Package org.ametys.web.usermanagement
Class UserSignupManager.TempUser
- java.lang.Object
-
- org.ametys.web.usermanagement.UserSignupManager.TempUser
-
- Enclosing class:
- UserSignupManager
public static class UserSignupManager.TempUser extends Object
Bean representing a user sign-up request.
-
-
Field Summary
Fields Modifier and Type Field Description protected String_emailThe user e-mail.protected String_populationThe id of the populationprotected String_siteThe site name.protected Date_subscriptionDateThe user subscription date.protected String_tokenThe request token.protected String_userDirectoryIdThe id of the user directory of the population
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetEmail()Get the email.StringgetPopulation()Get the population.StringgetSite()Get the site.DategetSubscriptionDate()Get the subscriptionDate.StringgetToken()Get the token.StringgetUserDirectoryId()Get the user directory id.voidsetEmail(String email)Set the email.voidsetPopulation(String population)Set the population.voidsetSite(String site)Set the site.voidsetSubscriptionDate(Date subscriptionDate)Set the subscriptionDate.voidsetToken(String token)Set the token.voidsetUserDirectoryIndex(String userDirectoryId)Set the user directory index.
-
-
-
Field Detail
-
_subscriptionDate
protected Date _subscriptionDate
The user subscription date.
-
_population
protected String _population
The id of the population
-
_userDirectoryId
protected String _userDirectoryId
The id of the user directory of the population
-
-
Constructor Detail
-
TempUser
public TempUser(String site, String email, Date subscriptionDate, String token, String population, String userDirectoryId)
Constructor.- Parameters:
site- the siteemail- the user's emailsubscriptionDate- the date of subscriptiontoken- the user's tokenpopulation- The id of the populationuserDirectoryId- The id of the user directory of the population
-
-
Method Detail
-
getSubscriptionDate
public Date getSubscriptionDate()
Get the subscriptionDate.- Returns:
- _the subscriptionDate
-
setSubscriptionDate
public void setSubscriptionDate(Date subscriptionDate)
Set the subscriptionDate.- Parameters:
subscriptionDate- the subscriptionDate to set
-
getPopulation
public String getPopulation()
Get the population.- Returns:
- the population
-
setPopulation
public void setPopulation(String population)
Set the population.- Parameters:
population- the population to set
-
getUserDirectoryId
public String getUserDirectoryId()
Get the user directory id.- Returns:
- the user directory id
-
setUserDirectoryIndex
public void setUserDirectoryIndex(String userDirectoryId)
Set the user directory index.- Parameters:
userDirectoryId- the user directory id to set
-
-