getPerm(String name, Object def) Get an object from permanent storage; return default if value
is null.
Parameters: name - The object's name. Parameters: def - A default value to return.
getTemp(String name, Object def) Get an object from temporary storage; return default if value
is null.
Parameters: name - The object's name. Parameters: def - A default value to return.
isConfirmed() This method reports whether or not the user has been confirmed
in the system by checking the TurbineUserPeer.CONFIRM_VALUE
column to see if it is equal to CONFIRM_DATA.
Gets the last access date for this User. This is the last time
that the user object was referenced.
A Java Date with the last access date for the user.
Returns the user's password. This method should not be used by
the application directly, because it's meaning depends upon
the implementation of UserManager that manages this particular
user object. Some implementations will use this attribute for
storing a password encrypted in some way, other will not use
it at all, when user entered password is presented to some external
authority (like NT domain controller) to validate it.
See also
org.apache.turbine.services.security.UserManager.authenticate(UserString) .
A String with the password for the user.
Get an object from permanent storage; return default if value
is null.
Parameters: name - The object's name. Parameters: def - A default value to return. An Object with the given name.
Get an object from temporary storage; return default if value
is null.
Parameters: name - The object's name. Parameters: def - A default value to return. An Object with the given name.
This method reports whether or not the user has been confirmed
in the system by checking the TurbineUserPeer.CONFIRM_VALUE
column to see if it is equal to CONFIRM_DATA.
True if the user has been confirmed.