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
_email
The user e-mail.protected String
_population
The id of the populationprotected String
_site
The site name.protected Date
_subscriptionDate
The user subscription date.protected String
_token
The request token.protected String
_userDirectoryId
The id of the user directory of the population
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getEmail()
Get the email.String
getPopulation()
Get the population.String
getSite()
Get the site.Date
getSubscriptionDate()
Get the subscriptionDate.String
getToken()
Get the token.String
getUserDirectoryId()
Get the user directory id.void
setEmail(String email)
Set the email.void
setPopulation(String population)
Set the population.void
setSite(String site)
Set the site.void
setSubscriptionDate(Date subscriptionDate)
Set the subscriptionDate.void
setToken(String token)
Set the token.void
setUserDirectoryIndex(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
-
-