Package de.xima.fc.entities.interfaces
Interface IUserIdentity
- 
- All Superinterfaces:
 Comparable<de.xima.cmn.dao.interfaces.IEntity<Long>>,de.xima.cmn.dao.interfaces.IEntity<Long>,IUUIDEntity,Serializable
- All Known Implementing Classes:
 UserCredentials,UserIdentity
public interface IUserIdentity extends de.xima.cmn.dao.interfaces.IEntity<Long>, IUUIDEntity, Serializable
Common interface for identifying users within authenticators- Since:
 - 8.0.0
 - Author:
 - XIMA Media GmbH
 
 
- 
- 
Field Summary
- 
Fields inherited from interface de.xima.fc.entities.interfaces.IUUIDEntity
ATTR_UUID, COL_UUID, INVALID_UUID, INVALID_UUID_OBJECT, NULL_SAFE_UUID_TYPE, NULLABLE_UUID_TYPE, TYPE_NAME_UUID 
 - 
 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull IClientDescriptorgetClientDescriptor()@NotBlank StringgetIdentifier()UserProfilegetUserProfile()- 
Methods inherited from interface java.lang.Comparable
compareTo 
- 
Methods inherited from interface de.xima.fc.entities.interfaces.IUUIDEntity
getUUID, getUUIDObject, setUUID 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getIdentifier
@NotBlank @NotBlank String getIdentifier()
- Returns:
 - a string that uniquely identifies a user within the 
clientof this user identity. 
 
- 
getUserProfile
UserProfile getUserProfile()
- Returns:
 - the user profile this identity is connected to.
 
 
- 
getClientDescriptor
@NotNull @NotNull IClientDescriptor getClientDescriptor()
- Returns:
 - the client descriptor that is used for signing in.
 
 
 - 
 
 -