Package org.nuxeo.ecm.user.invite
Class UserRegistrationInfo
- java.lang.Object
-
- org.nuxeo.ecm.user.invite.UserRegistrationInfo
-
public class UserRegistrationInfo extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected String
company
protected String
country
protected String
documentId
protected String
documentRight
protected String
email
protected String
firstName
protected List<String>
groups
protected String
lastName
protected String
login
protected String
password
Deprecated.since 7.3.protected String
tenantId
-
Constructor Summary
Constructors Constructor Description UserRegistrationInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
getCompany()
String
getCountry()
String
getEmail()
String
getFirstName()
List<String>
getGroups()
String
getLastName()
String
getLogin()
String
getPassword()
Deprecated.since 7.3.String
getTenantId()
void
setCompany(String company)
void
setCountry(String country)
void
setEmail(String email)
void
setFirstName(String firstName)
void
setGroups(List<String> groups)
void
setLastName(String lastName)
void
setLogin(String login)
void
setPassword(String password)
Deprecated.since 7.3.void
setTenantId(String tenantId)
-
-
-
Field Detail
-
login
protected String login
-
password
@Deprecated protected String password
Deprecated.since 7.3. The password should not be stored.
-
firstName
protected String firstName
-
lastName
protected String lastName
-
email
protected String email
-
company
protected String company
-
country
protected String country
-
documentId
protected String documentId
-
documentRight
protected String documentRight
-
tenantId
protected String tenantId
- Since:
- 8.1
-
-
Method Detail
-
getLogin
public String getLogin()
-
setLogin
public void setLogin(String login)
-
getPassword
@Deprecated public String getPassword()
Deprecated.since 7.3.
-
setPassword
@Deprecated public void setPassword(String password)
Deprecated.since 7.3.
-
getFirstName
public String getFirstName()
-
setFirstName
public void setFirstName(String firstName)
-
getLastName
public String getLastName()
-
setLastName
public void setLastName(String lastName)
-
getEmail
public String getEmail()
-
setEmail
public void setEmail(String email)
-
getCompany
public String getCompany()
-
setCompany
public void setCompany(String company)
-
getCountry
public String getCountry()
-
setCountry
public void setCountry(String country)
-
getTenantId
public String getTenantId()
-
setTenantId
public void setTenantId(String tenantId)
-
-