Class RegisterModel
- java.lang.Object
-
- com.tetsuwantech.atom.web.GenericModel
-
- com.tetsuwantech.atom.web.authentication.RegisterModel
-
- All Implemented Interfaces:
Serializable
public class RegisterModel extends GenericModel
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RegisterModel.Human
-
Field Summary
-
Fields inherited from class com.tetsuwantech.atom.web.GenericModel
id, LENGTH, LONG_LENGTH
-
-
Constructor Summary
Constructors Constructor Description RegisterModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAnswer()
RegisterModel.Human
getHuman()
NameModel
getName()
PasswordModel
getPassword()
Boolean
getTermsAndConditions()
String
getTimeZone()
UsernameModel
getUsername()
UuidModel
getUuid()
void
setAnswer(String answer)
void
setHuman(RegisterModel.Human human)
void
setName(NameModel name)
void
setPassword(PasswordModel password)
void
setTermsAndConditions(Boolean termsAndConditions)
void
setTimeZone(String timeZone)
void
setUsername(UsernameModel username)
void
setUuid(UuidModel uuid)
-
-
-
Method Detail
-
getUsername
public UsernameModel getUsername()
- Returns:
- the usernameModel
-
setUsername
public void setUsername(UsernameModel username)
- Parameters:
username
- the usernameModel to set
-
getName
public NameModel getName()
- Returns:
- the nameModel
-
setName
public void setName(NameModel name)
- Parameters:
name
- the nameModel to set
-
getUuid
public UuidModel getUuid()
-
setUuid
public void setUuid(UuidModel uuid)
-
getPassword
public PasswordModel getPassword()
- Returns:
- the passwordModel
-
setPassword
public void setPassword(PasswordModel password)
- Parameters:
password
- the passwordModel to set
-
getHuman
public RegisterModel.Human getHuman()
- Returns:
- the human
-
setHuman
public void setHuman(RegisterModel.Human human)
- Parameters:
human
- the human to set
-
getAnswer
public String getAnswer()
- Returns:
- the answer
-
setAnswer
public void setAnswer(String answer)
- Parameters:
answer
- the answer to set
-
getTermsAndConditions
public Boolean getTermsAndConditions()
- Returns:
- the termsAndConditions
-
setTermsAndConditions
public void setTermsAndConditions(Boolean termsAndConditions)
- Parameters:
termsAndConditions
- the termsAndConditions to set
-
getTimeZone
public String getTimeZone()
-
setTimeZone
public void setTimeZone(String timeZone)
-
-