org.omus.core
Class RegistrationData

java.lang.Object
  |
  +--org.omus.core.AuthenticationData
        |
        +--org.omus.core.RegistrationData

public class RegistrationData
extends AuthenticationData

Contains registration data of a user. Gets passed to the prepareRegister method in org.omus.ext.LoginExtension. It inherits all the methods of Authentication data. It adds two methods to handle the email address of the user.


Method Summary
 java.lang.String getEmail()
          Returns the email address of the user.
 void setEmail(java.lang.String newMail)
          Sets the email address of the user to the specified string.
 
Methods inherited from class org.omus.core.AuthenticationData
getErrorCode, getPassword, getUsername, setErrorCode, setPassword, setUsername
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getEmail

public java.lang.String getEmail()
Returns the email address of the user.

setEmail

public void setEmail(java.lang.String newMail)
Sets the email address of the user to the specified string.