Package system.web.security
Class Membership
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.web.security.Membership
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class Membership extends NetObject
The base .NET class managing System.Web.Security.Membership, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Web.Security.Membership
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
assemblyFullName
Fully assembly qualified name: System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.String
assemblyShortName
Assembly name: System.Webstatic java.lang.String
className
Qualified class name: System.Web.Security.Membershipstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description Membership()
Membership(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Membership
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoMembership
, a cast assert is made to check if types are compatible.static MembershipUser
CreateUser(java.lang.String username, java.lang.String password)
static MembershipUser
CreateUser(java.lang.String username, java.lang.String password, java.lang.String email)
static MembershipUser
CreateUser(java.lang.String username, java.lang.String password, java.lang.String email, java.lang.String passwordQuestion, java.lang.String passwordAnswer, boolean isApproved, JCORefOut<MembershipCreateStatus> status)
static MembershipUser
CreateUser(java.lang.String username, java.lang.String password, java.lang.String email, java.lang.String passwordQuestion, java.lang.String passwordAnswer, boolean isApproved, NetObject providerUserKey, JCORefOut<MembershipCreateStatus> status)
static boolean
DeleteUser(java.lang.String username)
static boolean
DeleteUser(java.lang.String username, boolean deleteAllRelatedData)
static MembershipUserCollection
FindUsersByEmail(java.lang.String emailToMatch)
static MembershipUserCollection
FindUsersByEmail(java.lang.String emailToMatch, int pageIndex, int pageSize, JCORefOut<java.util.concurrent.atomic.AtomicInteger> totalRecords)
static MembershipUserCollection
FindUsersByName(java.lang.String usernameToMatch)
static MembershipUserCollection
FindUsersByName(java.lang.String usernameToMatch, int pageIndex, int pageSize, JCORefOut<java.util.concurrent.atomic.AtomicInteger> totalRecords)
static java.lang.String
GeneratePassword(int length, int numberOfNonAlphanumericCharacters)
static MembershipUserCollection
GetAllUsers()
static MembershipUserCollection
GetAllUsers(int pageIndex, int pageSize, JCORefOut<java.util.concurrent.atomic.AtomicInteger> totalRecords)
static java.lang.String
getApplicationName()
static boolean
getEnablePasswordReset()
static boolean
getEnablePasswordRetrieval()
static java.lang.String
getHashAlgorithmType()
java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Typestatic int
getMaxInvalidPasswordAttempts()
static int
getMinRequiredNonAlphanumericCharacters()
static int
getMinRequiredPasswordLength()
static int
GetNumberOfUsersOnline()
static int
getPasswordAttemptWindow()
static java.lang.String
getPasswordStrengthRegularExpression()
static MembershipProvider
getProvider()
static MembershipProviderCollection
getProviders()
static boolean
getRequiresQuestionAndAnswer()
static MembershipUser
GetUser()
static MembershipUser
GetUser(boolean userIsOnline)
static MembershipUser
GetUser(java.lang.String username)
static MembershipUser
GetUser(java.lang.String username, boolean userIsOnline)
static MembershipUser
GetUser(NetObject providerUserKey)
static MembershipUser
GetUser(NetObject providerUserKey, boolean userIsOnline)
static int
getUserIsOnlineTimeWindow()
static java.lang.String
GetUserNameByEmail(java.lang.String emailToMatch)
static void
setApplicationName(java.lang.String ApplicationName)
void
setJCOInstance(JCObject instance)
static void
UpdateUser(MembershipUser user)
static boolean
ValidateUser(java.lang.String username, java.lang.String password)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Web- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Web.Security.Membership- See Also:
- Constant Field Values
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classNetObject
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static Membership cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoMembership
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
Membership
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
DeleteUser
public static boolean DeleteUser(java.lang.String username) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, SecurityException, TargetParameterCountException, NotSupportedException, HttpException, ProviderException, ConfigurationErrorsException, ConfigurationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
SecurityException
TargetParameterCountException
NotSupportedException
HttpException
ProviderException
ConfigurationErrorsException
ConfigurationException
-
DeleteUser
public static boolean DeleteUser(java.lang.String username, boolean deleteAllRelatedData) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, SecurityException, TargetParameterCountException, NotSupportedException, HttpException, ProviderException, ConfigurationErrorsException, ConfigurationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
SecurityException
TargetParameterCountException
NotSupportedException
HttpException
ProviderException
ConfigurationErrorsException
ConfigurationException
-
ValidateUser
public static boolean ValidateUser(java.lang.String username, java.lang.String password) throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, TargetParameterCountException, NotSupportedException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, HttpException, ArgumentOutOfRangeException, ProviderException, ConfigurationErrorsException, ConfigurationException, TypeLoadException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
TargetParameterCountException
NotSupportedException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
HttpException
ArgumentOutOfRangeException
ProviderException
ConfigurationErrorsException
ConfigurationException
TypeLoadException
-
GetNumberOfUsersOnline
public static int GetNumberOfUsersOnline() throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, TargetParameterCountException, NotSupportedException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, HttpException, ArgumentOutOfRangeException, ProviderException, ConfigurationErrorsException, ConfigurationException, TypeLoadException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
TargetParameterCountException
NotSupportedException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
HttpException
ArgumentOutOfRangeException
ProviderException
ConfigurationErrorsException
ConfigurationException
TypeLoadException
-
GeneratePassword
public static java.lang.String GeneratePassword(int length, int numberOfNonAlphanumericCharacters) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
OverflowException
-
GetUserNameByEmail
public static java.lang.String GetUserNameByEmail(java.lang.String emailToMatch) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, SecurityException, TargetParameterCountException, NotSupportedException, HttpException, ProviderException, ConfigurationErrorsException, ConfigurationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
SecurityException
TargetParameterCountException
NotSupportedException
HttpException
ProviderException
ConfigurationErrorsException
ConfigurationException
-
CreateUser
public static MembershipUser CreateUser(java.lang.String username, java.lang.String password) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, ArgumentException, MissingManifestResourceException, InvalidOperationException, HttpException, ConfigurationErrorsException, ConfigurationException, NotSupportedException, MissingMethodException, TargetInvocationException, ProviderException, MembershipCreateUserException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
CultureNotFoundException
ArgumentException
MissingManifestResourceException
InvalidOperationException
HttpException
ConfigurationErrorsException
ConfigurationException
NotSupportedException
MissingMethodException
TargetInvocationException
ProviderException
MembershipCreateUserException
-
CreateUser
public static MembershipUser CreateUser(java.lang.String username, java.lang.String password, java.lang.String email) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, ArgumentException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, HttpException, ConfigurationErrorsException, NotSupportedException, ConfigurationException, TypeLoadException, ProviderException, MembershipCreateUserException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
CultureNotFoundException
ArgumentException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
HttpException
ConfigurationErrorsException
NotSupportedException
ConfigurationException
TypeLoadException
ProviderException
MembershipCreateUserException
-
CreateUser
public static MembershipUser CreateUser(java.lang.String username, java.lang.String password, java.lang.String email, java.lang.String passwordQuestion, java.lang.String passwordAnswer, boolean isApproved, NetObject providerUserKey, JCORefOut<MembershipCreateStatus> status) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, IndexOutOfRangeException, CultureNotFoundException, InvalidOperationException, SecurityException, TargetParameterCountException, NotSupportedException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, HttpException, ProviderException, ConfigurationErrorsException, ConfigurationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
IndexOutOfRangeException
CultureNotFoundException
InvalidOperationException
SecurityException
TargetParameterCountException
NotSupportedException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
HttpException
ProviderException
ConfigurationErrorsException
ConfigurationException
-
CreateUser
public static MembershipUser CreateUser(java.lang.String username, java.lang.String password, java.lang.String email, java.lang.String passwordQuestion, java.lang.String passwordAnswer, boolean isApproved, JCORefOut<MembershipCreateStatus> status) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, HttpException, ConfigurationErrorsException, NotSupportedException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
CultureNotFoundException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
HttpException
ConfigurationErrorsException
NotSupportedException
ConfigurationException
ProviderException
-
GetUser
public static MembershipUser GetUser() throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, NotSupportedException, ArgumentOutOfRangeException, SecurityException, NullReferenceException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
ArgumentNullException
NotSupportedException
ArgumentOutOfRangeException
SecurityException
NullReferenceException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
-
GetUser
public static MembershipUser GetUser(boolean userIsOnline) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ArgumentNullException, NotSupportedException, ArgumentOutOfRangeException, SecurityException, NullReferenceException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
ArgumentNullException
NotSupportedException
ArgumentOutOfRangeException
SecurityException
NullReferenceException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
-
GetUser
public static MembershipUser GetUser(NetObject providerUserKey) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, HttpException, ArgumentOutOfRangeException, ConfigurationErrorsException, NotSupportedException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
HttpException
ArgumentOutOfRangeException
ConfigurationErrorsException
NotSupportedException
ConfigurationException
ProviderException
-
GetUser
public static MembershipUser GetUser(NetObject providerUserKey, boolean userIsOnline) throws java.lang.Throwable, ArgumentNullException, ArgumentException, SecurityException, TargetParameterCountException, NotSupportedException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, HttpException, ArgumentOutOfRangeException, ProviderException, ConfigurationErrorsException, ConfigurationException, TypeLoadException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
SecurityException
TargetParameterCountException
NotSupportedException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
HttpException
ArgumentOutOfRangeException
ProviderException
ConfigurationErrorsException
ConfigurationException
TypeLoadException
-
GetUser
public static MembershipUser GetUser(java.lang.String username) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, HttpException, ConfigurationErrorsException, NotSupportedException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
HttpException
ConfigurationErrorsException
NotSupportedException
ConfigurationException
ProviderException
-
GetUser
public static MembershipUser GetUser(java.lang.String username, boolean userIsOnline) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, SecurityException, TargetParameterCountException, NotSupportedException, HttpException, ProviderException, ConfigurationErrorsException, ConfigurationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
SecurityException
TargetParameterCountException
NotSupportedException
HttpException
ProviderException
ConfigurationErrorsException
ConfigurationException
-
FindUsersByEmail
public static MembershipUserCollection FindUsersByEmail(java.lang.String emailToMatch) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, HttpException, ConfigurationErrorsException, NotSupportedException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
HttpException
ConfigurationErrorsException
NotSupportedException
ConfigurationException
ProviderException
-
FindUsersByEmail
public static MembershipUserCollection FindUsersByEmail(java.lang.String emailToMatch, int pageIndex, int pageSize, JCORefOut<java.util.concurrent.atomic.AtomicInteger> totalRecords) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, SecurityException, TargetParameterCountException, NotSupportedException, HttpException, ProviderException, ConfigurationErrorsException, ConfigurationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
SecurityException
TargetParameterCountException
NotSupportedException
HttpException
ProviderException
ConfigurationErrorsException
ConfigurationException
-
FindUsersByName
public static MembershipUserCollection FindUsersByName(java.lang.String usernameToMatch) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, SecurityException, TargetParameterCountException, NotSupportedException, HttpException, ProviderException, ConfigurationErrorsException, ConfigurationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
SecurityException
TargetParameterCountException
NotSupportedException
HttpException
ProviderException
ConfigurationErrorsException
ConfigurationException
-
FindUsersByName
public static MembershipUserCollection FindUsersByName(java.lang.String usernameToMatch, int pageIndex, int pageSize, JCORefOut<java.util.concurrent.atomic.AtomicInteger> totalRecords) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, SecurityException, TargetParameterCountException, NotSupportedException, HttpException, ProviderException, ConfigurationErrorsException, ConfigurationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
SecurityException
TargetParameterCountException
NotSupportedException
HttpException
ProviderException
ConfigurationErrorsException
ConfigurationException
-
GetAllUsers
public static MembershipUserCollection GetAllUsers() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, HttpException, ConfigurationErrorsException, NotSupportedException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
HttpException
ConfigurationErrorsException
NotSupportedException
ConfigurationException
ProviderException
-
GetAllUsers
public static MembershipUserCollection GetAllUsers(int pageIndex, int pageSize, JCORefOut<java.util.concurrent.atomic.AtomicInteger> totalRecords) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, SecurityException, TargetParameterCountException, HttpException, ProviderException, ConfigurationErrorsException, ConfigurationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
SecurityException
TargetParameterCountException
HttpException
ProviderException
ConfigurationErrorsException
ConfigurationException
-
UpdateUser
public static void UpdateUser(MembershipUser user) throws java.lang.Throwable, ArgumentNullException, ObjectDisposedException, AbandonedMutexException, ArgumentOutOfRangeException, OverflowException, ArgumentException
- Throws:
java.lang.Throwable
ArgumentNullException
ObjectDisposedException
AbandonedMutexException
ArgumentOutOfRangeException
OverflowException
ArgumentException
-
getEnablePasswordReset
public static boolean getEnablePasswordReset() throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ProviderException, ConfigurationErrorsException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ProviderException
ConfigurationErrorsException
InvalidCastException
-
getEnablePasswordRetrieval
public static boolean getEnablePasswordRetrieval() throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ProviderException, ConfigurationErrorsException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ProviderException
ConfigurationErrorsException
InvalidCastException
-
getRequiresQuestionAndAnswer
public static boolean getRequiresQuestionAndAnswer() throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ProviderException, ConfigurationErrorsException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ProviderException
ConfigurationErrorsException
InvalidCastException
-
getMaxInvalidPasswordAttempts
public static int getMaxInvalidPasswordAttempts() throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ProviderException, ConfigurationErrorsException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ProviderException
ConfigurationErrorsException
InvalidCastException
-
getMinRequiredNonAlphanumericCharacters
public static int getMinRequiredNonAlphanumericCharacters() throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ProviderException, ConfigurationErrorsException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ProviderException
ConfigurationErrorsException
InvalidCastException
-
getMinRequiredPasswordLength
public static int getMinRequiredPasswordLength() throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ProviderException, ConfigurationErrorsException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ProviderException
ConfigurationErrorsException
InvalidCastException
-
getPasswordAttemptWindow
public static int getPasswordAttemptWindow() throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ProviderException, ConfigurationErrorsException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ProviderException
ConfigurationErrorsException
InvalidCastException
-
getUserIsOnlineTimeWindow
public static int getUserIsOnlineTimeWindow() throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ProviderException, ConfigurationErrorsException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ProviderException
ConfigurationErrorsException
InvalidCastException
-
getApplicationName
public static java.lang.String getApplicationName() throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, TargetParameterCountException, NotSupportedException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, HttpException, ArgumentOutOfRangeException, ProviderException, ConfigurationErrorsException, ConfigurationException, TypeLoadException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
TargetParameterCountException
NotSupportedException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
HttpException
ArgumentOutOfRangeException
ProviderException
ConfigurationErrorsException
ConfigurationException
TypeLoadException
-
setApplicationName
public static void setApplicationName(java.lang.String ApplicationName) throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, TargetParameterCountException, NotSupportedException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, HttpException, ArgumentOutOfRangeException, ProviderException, ConfigurationErrorsException, ConfigurationException, TypeLoadException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
TargetParameterCountException
NotSupportedException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
HttpException
ArgumentOutOfRangeException
ProviderException
ConfigurationErrorsException
ConfigurationException
TypeLoadException
-
getHashAlgorithmType
public static java.lang.String getHashAlgorithmType() throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ProviderException, ConfigurationErrorsException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ProviderException
ConfigurationErrorsException
InvalidCastException
-
getPasswordStrengthRegularExpression
public static java.lang.String getPasswordStrengthRegularExpression() throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ProviderException, ConfigurationErrorsException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ProviderException
ConfigurationErrorsException
InvalidCastException
-
getProvider
public static MembershipProvider getProvider() throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ProviderException, ConfigurationErrorsException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ProviderException
ConfigurationErrorsException
InvalidCastException
-
getProviders
public static MembershipProviderCollection getProviders() throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ProviderException, ConfigurationErrorsException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ProviderException
ConfigurationErrorsException
InvalidCastException
-
-