Package system.web.security
Class MembershipUser
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.web.security.MembershipUser
-
- All Implemented Interfaces:
IJCOBridgeReflected
- Direct Known Subclasses:
ActiveDirectoryMembershipUser
public class MembershipUser extends NetObject
The base .NET class managing System.Web.Security.MembershipUser, System.Web.ApplicationServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Web.Security.MembershipUser
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.ApplicationServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35static java.lang.String
assemblyShortName
Assembly name: System.Web.ApplicationServicesstatic java.lang.String
className
Qualified class name: System.Web.Security.MembershipUserstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description MembershipUser()
MembershipUser(java.lang.Object instance)
Internal constructor.MembershipUser(java.lang.String providerName, java.lang.String name, NetObject providerUserKey, java.lang.String email, java.lang.String passwordQuestion, java.lang.String comment, boolean isApproved, boolean isLockedOut, DateTime creationDate, DateTime lastLoginDate, DateTime lastActivityDate, DateTime lastPasswordChangedDate, DateTime lastLockoutDate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MembershipUser
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoMembershipUser
, a cast assert is made to check if types are compatible.boolean
ChangePassword(java.lang.String oldPassword, java.lang.String newPassword)
boolean
ChangePasswordQuestionAndAnswer(java.lang.String password, java.lang.String newPasswordQuestion, java.lang.String newPasswordAnswer)
java.lang.String
getComment()
DateTime
getCreationDate()
java.lang.String
getEmail()
boolean
getIsApproved()
boolean
getIsLockedOut()
boolean
getIsOnline()
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 TypeDateTime
getLastActivityDate()
DateTime
getLastLockoutDate()
DateTime
getLastLoginDate()
DateTime
getLastPasswordChangedDate()
java.lang.String
GetPassword()
java.lang.String
GetPassword(java.lang.String passwordAnswer)
java.lang.String
getPasswordQuestion()
java.lang.String
getProviderName()
NetObject
getProviderUserKey()
java.lang.String
getUserName()
java.lang.String
ResetPassword()
java.lang.String
ResetPassword(java.lang.String passwordAnswer)
void
setComment(java.lang.String Comment)
void
setEmail(java.lang.String Email)
void
setIsApproved(boolean IsApproved)
void
setJCOInstance(JCObject instance)
void
setLastActivityDate(DateTime LastActivityDate)
void
setLastLoginDate(DateTime LastLoginDate)
boolean
UnlockUser()
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Web.ApplicationServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Web.ApplicationServices- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Web.Security.MembershipUser- See Also:
- Constant Field Values
-
-
Constructor Detail
-
MembershipUser
public MembershipUser(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
MembershipUser
public MembershipUser() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
MembershipUser
public MembershipUser(java.lang.String providerName, java.lang.String name, NetObject providerUserKey, java.lang.String email, java.lang.String passwordQuestion, java.lang.String comment, boolean isApproved, boolean isLockedOut, DateTime creationDate, DateTime lastLoginDate, DateTime lastActivityDate, DateTime lastPasswordChangedDate, DateTime lastLockoutDate) throws java.lang.Throwable, ArgumentNullException, ObjectDisposedException, AbandonedMutexException, TypeLoadException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, CultureNotFoundException, ArgumentOutOfRangeException, NotImplementedException, OutOfMemoryException, MissingManifestResourceException, InvalidTimeZoneException, IOException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
ObjectDisposedException
AbandonedMutexException
TypeLoadException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotSupportedException
CultureNotFoundException
ArgumentOutOfRangeException
NotImplementedException
OutOfMemoryException
MissingManifestResourceException
InvalidTimeZoneException
IOException
OverflowException
-
-
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 MembershipUser cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoMembershipUser
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
MembershipUser
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
ChangePassword
public boolean ChangePassword(java.lang.String oldPassword, java.lang.String newPassword) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, NotImplementedException, ArgumentOutOfRangeException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, FormatException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
CultureNotFoundException
NotImplementedException
ArgumentOutOfRangeException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
FormatException
OverflowException
-
ChangePasswordQuestionAndAnswer
public boolean ChangePasswordQuestionAndAnswer(java.lang.String password, java.lang.String newPasswordQuestion, java.lang.String newPasswordAnswer) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, NotImplementedException, ArgumentOutOfRangeException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, FormatException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
CultureNotFoundException
NotImplementedException
ArgumentOutOfRangeException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
FormatException
OverflowException
-
UnlockUser
public boolean UnlockUser() throws java.lang.Throwable, ArgumentNullException, ObjectDisposedException, AbandonedMutexException, ArgumentException, ArgumentOutOfRangeException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
ObjectDisposedException
AbandonedMutexException
ArgumentException
ArgumentOutOfRangeException
OverflowException
-
GetPassword
public java.lang.String GetPassword() throws java.lang.Throwable, ArgumentNullException, ObjectDisposedException, AbandonedMutexException
- Throws:
java.lang.Throwable
ArgumentNullException
ObjectDisposedException
AbandonedMutexException
-
GetPassword
public java.lang.String GetPassword(java.lang.String passwordAnswer) throws java.lang.Throwable, ArgumentNullException, ObjectDisposedException, AbandonedMutexException
- Throws:
java.lang.Throwable
ArgumentNullException
ObjectDisposedException
AbandonedMutexException
-
ResetPassword
public java.lang.String ResetPassword() throws java.lang.Throwable, ArgumentNullException, ObjectDisposedException, AbandonedMutexException, ArgumentOutOfRangeException, OverflowException, ArgumentException
- Throws:
java.lang.Throwable
ArgumentNullException
ObjectDisposedException
AbandonedMutexException
ArgumentOutOfRangeException
OverflowException
ArgumentException
-
ResetPassword
public java.lang.String ResetPassword(java.lang.String passwordAnswer) throws java.lang.Throwable, ArgumentNullException, ObjectDisposedException, AbandonedMutexException, ArgumentException, ArgumentOutOfRangeException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
ObjectDisposedException
AbandonedMutexException
ArgumentException
ArgumentOutOfRangeException
OverflowException
-
getIsApproved
public boolean getIsApproved() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setIsApproved
public void setIsApproved(boolean IsApproved) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getIsLockedOut
public boolean getIsLockedOut() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getIsOnline
public boolean getIsOnline() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentException, OverflowException, ArgumentNullException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentException
OverflowException
ArgumentNullException
-
getCreationDate
public DateTime getCreationDate() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, InvalidTimeZoneException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
InvalidTimeZoneException
NotSupportedException
-
getLastActivityDate
public DateTime getLastActivityDate() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, InvalidTimeZoneException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
InvalidTimeZoneException
NotSupportedException
-
setLastActivityDate
public void setLastActivityDate(DateTime LastActivityDate) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, InvalidTimeZoneException, SecurityException, IOException, InvalidOperationException, NotSupportedException, OverflowException
-
getLastLockoutDate
public DateTime getLastLockoutDate() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, InvalidTimeZoneException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
InvalidTimeZoneException
NotSupportedException
-
getLastLoginDate
public DateTime getLastLoginDate() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, InvalidTimeZoneException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
InvalidTimeZoneException
NotSupportedException
-
setLastLoginDate
public void setLastLoginDate(DateTime LastLoginDate) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, InvalidTimeZoneException, SecurityException, IOException, InvalidOperationException, NotSupportedException, OverflowException
-
getLastPasswordChangedDate
public DateTime getLastPasswordChangedDate() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, InvalidTimeZoneException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
InvalidTimeZoneException
NotSupportedException
-
getProviderUserKey
public NetObject getProviderUserKey() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getComment
public java.lang.String getComment() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setComment
public void setComment(java.lang.String Comment) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getEmail
public java.lang.String getEmail() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setEmail
public void setEmail(java.lang.String Email) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getPasswordQuestion
public java.lang.String getPasswordQuestion() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getProviderName
public java.lang.String getProviderName() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getUserName
public java.lang.String getUserName() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-