Class UserCredentials
- java.lang.Object
-
- org.apache.archiva.redback.integration.model.UserCredentials
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CreateUserCredentials,EditUserCredentials
public abstract class UserCredentials extends Object implements Serializable
UserCredentials- Author:
- Joakim Erdfelt
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UserCredentials()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description UsercreateUser(UserManager um)StringgetConfirmPassword()StringgetEmail()StringgetFullName()StringgetPassword()StringgetTimestampAccountCreation()StringgetTimestampLastLogin()StringgetTimestampLastPasswordChange()StringgetUsername()abstract booleanisEdit()voidsetConfirmPassword(String confirmPassword)voidsetEmail(String email)voidsetFullName(String fullName)voidsetPassword(String password)voidsetTimestampAccountCreation(String timestampAccountCreation)voidsetTimestampLastLogin(String timestampLastLogin)voidsetTimestampLastPasswordChange(String timestampLastPasswordChange)voidsetUsername(String username)StringtoString()
-
-
-
Constructor Detail
-
UserCredentials
public UserCredentials()
-
-
Method Detail
-
createUser
public User createUser(UserManager um) throws UserManagerException
- Throws:
UserManagerException
-
getConfirmPassword
public String getConfirmPassword()
-
setConfirmPassword
public void setConfirmPassword(String confirmPassword)
-
getFullName
public String getFullName()
-
setFullName
public void setFullName(String fullName)
-
getPassword
public String getPassword()
-
setPassword
public void setPassword(String password)
-
getUsername
public String getUsername()
-
setUsername
public void setUsername(String username)
-
isEdit
public abstract boolean isEdit()
-
getTimestampAccountCreation
public String getTimestampAccountCreation()
-
getTimestampLastLogin
public String getTimestampLastLogin()
-
getTimestampLastPasswordChange
public String getTimestampLastPasswordChange()
-
setTimestampAccountCreation
public void setTimestampAccountCreation(String timestampAccountCreation)
-
setTimestampLastLogin
public void setTimestampLastLogin(String timestampLastLogin)
-
setTimestampLastPasswordChange
public void setTimestampLastPasswordChange(String timestampLastPasswordChange)
-
-