public interface UserModel
Modifier and Type | Interface and Description |
---|---|
static class |
UserModel.RequiredAction |
Modifier and Type | Field and Description |
---|---|
static String |
EMAIL |
static String |
FIRST_NAME |
static String |
LAST_NAME |
static String |
LOGIN_NAME |
Modifier and Type | Method and Description |
---|---|
void |
addRequiredAction(UserModel.RequiredAction action) |
String |
getAttribute(String name) |
Map<String,String> |
getAttributes() |
String |
getEmail() |
String |
getFirstName() |
String |
getId() |
String |
getLastName() |
String |
getLoginName() |
int |
getNotBefore() |
Set<UserModel.RequiredAction> |
getRequiredActions() |
boolean |
isEmailVerified() |
boolean |
isEnabled() |
boolean |
isTotp() |
void |
removeAttribute(String name) |
void |
removeRequiredAction(UserModel.RequiredAction action) |
void |
setAttribute(String name,
String value) |
void |
setEmail(String email) |
void |
setEmailVerified(boolean verified) |
void |
setEnabled(boolean enabled) |
void |
setFirstName(String firstName) |
void |
setLastName(String lastName) |
void |
setLoginName(String loginName) |
void |
setNotBefore(int notBefore) |
void |
setTotp(boolean totp) |
static final String LOGIN_NAME
static final String LAST_NAME
static final String FIRST_NAME
static final String EMAIL
String getId()
String getLoginName()
void setLoginName(String loginName)
boolean isEnabled()
boolean isTotp()
void setEnabled(boolean enabled)
void removeAttribute(String name)
Set<UserModel.RequiredAction> getRequiredActions()
void addRequiredAction(UserModel.RequiredAction action)
void removeRequiredAction(UserModel.RequiredAction action)
String getFirstName()
void setFirstName(String firstName)
String getLastName()
void setLastName(String lastName)
String getEmail()
void setEmail(String email)
boolean isEmailVerified()
void setEmailVerified(boolean verified)
void setTotp(boolean totp)
int getNotBefore()
void setNotBefore(int notBefore)
Copyright © 2014. All Rights Reserved.