Class UserCR
- java.lang.Object
-
- org.apache.syncope.common.lib.request.AnyCR
-
- org.apache.syncope.common.lib.request.UserCR
-
- All Implemented Interfaces:
Serializable
,Attributable
,BaseBean
,RealmMember
,GroupableRelatableTO
public class UserCR extends AnyCR implements GroupableRelatableTO
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
UserCR.Builder
-
Constructor Summary
Constructors Constructor Description UserCR()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getDiscriminator()
List<MembershipTO>
getDynMemberships()
List<LinkedAccountTO>
getLinkedAccounts()
Optional<MembershipTO>
getMembership(String groupKey)
List<MembershipTO>
getMemberships()
String
getPassword()
Optional<RelationshipTO>
getRelationship(String type, String otherKey)
List<RelationshipTO>
getRelationships()
Set<String>
getRoles()
String
getSecurityAnswer()
String
getSecurityQuestion()
String
getUsername()
int
hashCode()
boolean
isMustChangePassword()
boolean
isStorePassword()
void
setMustChangePassword(boolean mustChangePassword)
void
setPassword(String password)
void
setSecurityAnswer(String securityAnswer)
void
setSecurityQuestion(String securityQuestion)
void
setStorePassword(boolean storePassword)
void
setUsername(String username)
-
Methods inherited from class org.apache.syncope.common.lib.request.AnyCR
getAuxClasses, getDerAttr, getDerAttrs, getPlainAttr, getPlainAttrs, getRealm, getResources, getVirAttr, getVirAttrs, setDiscriminator, setRealm
-
-
-
-
Method Detail
-
getDiscriminator
public String getDiscriminator()
- Specified by:
getDiscriminator
in classAnyCR
-
getUsername
public String getUsername()
-
setUsername
public void setUsername(String username)
-
getPassword
public String getPassword()
-
setPassword
public void setPassword(String password)
-
isStorePassword
public boolean isStorePassword()
-
setStorePassword
public void setStorePassword(boolean storePassword)
-
getSecurityQuestion
public String getSecurityQuestion()
-
setSecurityQuestion
public void setSecurityQuestion(String securityQuestion)
-
getSecurityAnswer
public String getSecurityAnswer()
-
setSecurityAnswer
public void setSecurityAnswer(String securityAnswer)
-
isMustChangePassword
public boolean isMustChangePassword()
-
setMustChangePassword
public void setMustChangePassword(boolean mustChangePassword)
-
getRelationship
public Optional<RelationshipTO> getRelationship(String type, String otherKey)
- Specified by:
getRelationship
in interfaceGroupableRelatableTO
-
getRelationships
public List<RelationshipTO> getRelationships()
- Specified by:
getRelationships
in interfaceGroupableRelatableTO
-
getMembership
public Optional<MembershipTO> getMembership(String groupKey)
- Specified by:
getMembership
in interfaceGroupableRelatableTO
-
getMemberships
public List<MembershipTO> getMemberships()
- Specified by:
getMemberships
in interfaceGroupableRelatableTO
-
getDynMemberships
public List<MembershipTO> getDynMemberships()
- Specified by:
getDynMemberships
in interfaceGroupableRelatableTO
-
getLinkedAccounts
public List<LinkedAccountTO> getLinkedAccounts()
-
-