Package org.keycloak.models.map.user
Class UserCredentialEntity
- java.lang.Object
-
- org.keycloak.models.map.common.UpdatableEntity.Impl
-
- org.keycloak.models.map.user.UserCredentialEntity
-
- All Implemented Interfaces:
UpdatableEntity
public class UserCredentialEntity extends UpdatableEntity.Impl
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.UpdatableEntity
UpdatableEntity.Impl
-
-
Field Summary
-
Fields inherited from class org.keycloak.models.map.common.UpdatableEntity.Impl
updated
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UserCredentialEntityfromModel(CredentialModel model)LonggetCreatedDate()StringgetCredentialData()StringgetId()StringgetSecretData()StringgetType()StringgetUserLabel()voidsetCreatedDate(Long createdDate)voidsetCredentialData(String credentialData)voidsetId(String id)voidsetSecretData(String secretData)voidsetType(String type)voidsetUserLabel(String userLabel)static CredentialModeltoModel(UserCredentialEntity entity)-
Methods inherited from class org.keycloak.models.map.common.UpdatableEntity.Impl
clearUpdatedFlag, isUpdated
-
-
-
-
Method Detail
-
fromModel
public static UserCredentialEntity fromModel(CredentialModel model)
-
toModel
public static CredentialModel toModel(UserCredentialEntity entity)
-
getId
public String getId()
-
setId
public void setId(String id)
-
getType
public String getType()
-
setType
public void setType(String type)
-
getUserLabel
public String getUserLabel()
-
setUserLabel
public void setUserLabel(String userLabel)
-
getCreatedDate
public Long getCreatedDate()
-
setCreatedDate
public void setCreatedDate(Long createdDate)
-
getSecretData
public String getSecretData()
-
setSecretData
public void setSecretData(String secretData)
-
getCredentialData
public String getCredentialData()
-
setCredentialData
public void setCredentialData(String credentialData)
-
-