Package de.xima.fc.entities
Class UserRefreshToken
- java.lang.Object
 - 
- de.xima.cmn.dao.model.AEntity<UUID>
 - 
- de.xima.fc.entities.UserRefreshToken
 
 
 
- 
- All Implemented Interfaces:
 de.xima.cmn.dao.interfaces.IEntity<UUID>,Serializable,Comparable<de.xima.cmn.dao.interfaces.IEntity<UUID>>
@Entity(name="user_refresh_token") public class UserRefreshToken extends de.xima.cmn.dao.model.AEntity<UUID>
- See Also:
 - Serialized Form
 
 
- 
- 
Field Summary
Fields Modifier and Type Field Description static StringATTR_CLIENT_AUTHENTICATORstatic StringATTR_CREATED_TIMESTAMPstatic StringATTR_EXPIRE_TIMESTAMPstatic StringATTR_PROFILEstatic StringATTR_SYSTEM_AUTHENTICATORstatic StringATTR_USER_IDprotected @NotNull EAuthClientTypeauthenticatorTypestatic StringCOL_AUTHENTICATOR_TYPEstatic StringCOL_CLIENT_AUTHENTICATOR_IDstatic StringCOL_CREATED_TIMESTAMPstatic StringCOL_EXPIRE_TIMESTAMPstatic StringCOL_PROFILEstatic StringCOL_SYSTEM_AUTHENTICATOR_IDstatic StringCOL_TOKENstatic StringCOL_USER_IDstatic StringCOL_UUID 
- 
Constructor Summary
Constructors Constructor Description UserRefreshToken() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IAuthenticator<?>getAuthenticator()EAuthClientTypegetAuthenticatorType()ClientAuthenticatorgetClientAuthenticator()IClientDescriptorgetClientDescriptor()InstantgetCreatedInstance()InstantgetExpireInstance()UUIDgetId()SystemAuthenticatorgetSystemAuthenticator()StringgetToken()StringgetUserId()UserProfilegetUserProfile()booleanisPersisted()voidsetAuthenticator(IAuthenticator<?> authenticator)voidsetAuthenticatorType(EAuthClientType authenticatorType)voidsetClientAuthenticator(ClientAuthenticator clientAuthenticator)voidsetClientDescriptor(IClientDescriptor clientDescriptor)voidsetCreatedInstance(Instant createdInstance)voidsetExpireInstance(Instant expiresInstance)voidsetId(UUID id)voidsetSystemAuthenticator(SystemAuthenticator systemAuthenticator)voidsetToken(String token)voidsetUserId(String userId)voidsetUserProfile(UserProfile userProfile) 
 - 
 
- 
- 
Field Detail
- 
COL_SYSTEM_AUTHENTICATOR_ID
public static final String COL_SYSTEM_AUTHENTICATOR_ID
- See Also:
 - Constant Field Values
 
 
- 
COL_CLIENT_AUTHENTICATOR_ID
public static final String COL_CLIENT_AUTHENTICATOR_ID
- See Also:
 - Constant Field Values
 
 
- 
COL_AUTHENTICATOR_TYPE
public static final String COL_AUTHENTICATOR_TYPE
- See Also:
 - Constant Field Values
 
 
- 
COL_EXPIRE_TIMESTAMP
public static final String COL_EXPIRE_TIMESTAMP
- See Also:
 - Constant Field Values
 
 
- 
COL_CREATED_TIMESTAMP
public static final String COL_CREATED_TIMESTAMP
- See Also:
 - Constant Field Values
 
 
- 
COL_PROFILE
public static final String COL_PROFILE
- See Also:
 - Constant Field Values
 
 
- 
COL_USER_ID
public static final String COL_USER_ID
- See Also:
 - Constant Field Values
 
 
- 
COL_TOKEN
public static final String COL_TOKEN
- See Also:
 - Constant Field Values
 
 
- 
COL_UUID
public static final String COL_UUID
- See Also:
 - Constant Field Values
 
 
- 
ATTR_USER_ID
public static final String ATTR_USER_ID
- See Also:
 - Constant Field Values
 
 
- 
ATTR_PROFILE
public static final String ATTR_PROFILE
- See Also:
 - Constant Field Values
 
 
- 
ATTR_EXPIRE_TIMESTAMP
public static final String ATTR_EXPIRE_TIMESTAMP
- See Also:
 - Constant Field Values
 
 
- 
ATTR_CREATED_TIMESTAMP
public static final String ATTR_CREATED_TIMESTAMP
- See Also:
 - Constant Field Values
 
 
- 
ATTR_SYSTEM_AUTHENTICATOR
public static final String ATTR_SYSTEM_AUTHENTICATOR
- See Also:
 - Constant Field Values
 
 
- 
ATTR_CLIENT_AUTHENTICATOR
public static final String ATTR_CLIENT_AUTHENTICATOR
- See Also:
 - Constant Field Values
 
 
- 
authenticatorType
@NotNull protected @NotNull EAuthClientType authenticatorType
 
 - 
 
- 
Method Detail
- 
getId
public UUID getId()
 
- 
setId
public void setId(UUID id)
 
- 
getUserProfile
public UserProfile getUserProfile()
 
- 
setUserProfile
public void setUserProfile(UserProfile userProfile)
 
- 
getUserId
public String getUserId()
 
- 
setUserId
public void setUserId(String userId)
 
- 
getSystemAuthenticator
public SystemAuthenticator getSystemAuthenticator()
 
- 
setSystemAuthenticator
public void setSystemAuthenticator(SystemAuthenticator systemAuthenticator)
 
- 
getClientAuthenticator
public ClientAuthenticator getClientAuthenticator()
 
- 
setClientAuthenticator
public void setClientAuthenticator(ClientAuthenticator clientAuthenticator)
 
- 
getAuthenticatorType
public EAuthClientType getAuthenticatorType()
 
- 
setAuthenticatorType
public void setAuthenticatorType(EAuthClientType authenticatorType)
 
- 
getToken
public String getToken()
 
- 
setToken
public void setToken(String token)
 
- 
getCreatedInstance
public Instant getCreatedInstance()
 
- 
setCreatedInstance
public void setCreatedInstance(Instant createdInstance)
 
- 
getExpireInstance
public Instant getExpireInstance()
 
- 
setExpireInstance
public void setExpireInstance(Instant expiresInstance)
 
- 
getClientDescriptor
public IClientDescriptor getClientDescriptor()
 
- 
setClientDescriptor
public void setClientDescriptor(IClientDescriptor clientDescriptor)
 
- 
getAuthenticator
public IAuthenticator<?> getAuthenticator()
 
- 
setAuthenticator
public void setAuthenticator(IAuthenticator<?> authenticator)
 
- 
isPersisted
public boolean isPersisted()
 
 - 
 
 -