Package org.keycloak.storage.jpa.entity
Class FederatedUserCredentialEntity
- java.lang.Object
-
- org.keycloak.storage.jpa.entity.FederatedUserCredentialEntity
-
@Entity public class FederatedUserCredentialEntity extends Object
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Field Summary
Fields Modifier and Type Field Description protected LongcreatedDateprotected StringcredentialDataprotected Stringidprotected intpriorityprotected StringrealmIdprotected byte[]saltDeprecated.protected StringsecretDataprotected StringstorageProviderIdprotected Stringtypeprotected StringuserIdprotected StringuserLabel
-
Constructor Summary
Constructors Constructor Description FederatedUserCredentialEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanequals(Object o)LonggetCreatedDate()StringgetCredentialData()StringgetId()intgetPriority()StringgetRealmId()byte[]getSalt()Deprecated.StringgetSecretData()StringgetStorageProviderId()StringgetType()StringgetUserId()StringgetUserLabel()inthashCode()voidsetCreatedDate(Long createdDate)voidsetCredentialData(String credentialData)voidsetId(String id)voidsetPriority(int priority)voidsetRealmId(String realmId)voidsetSalt(byte[] salt)Deprecated.voidsetSecretData(String secretData)voidsetStorageProviderId(String storageProviderId)voidsetType(String type)voidsetUserId(String userId)voidsetUserLabel(String userLabel)
-
-
-
Field Detail
-
id
protected String id
-
secretData
protected String secretData
-
credentialData
protected String credentialData
-
type
protected String type
-
userLabel
protected String userLabel
-
createdDate
protected Long createdDate
-
userId
protected String userId
-
realmId
protected String realmId
-
storageProviderId
protected String storageProviderId
-
priority
protected int priority
-
salt
@Deprecated protected byte[] salt
Deprecated.
-
-
Method Detail
-
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)
-
getUserId
public String getUserId()
-
setUserId
public void setUserId(String userId)
-
getRealmId
public String getRealmId()
-
setRealmId
public void setRealmId(String realmId)
-
getStorageProviderId
public String getStorageProviderId()
-
setStorageProviderId
public void setStorageProviderId(String storageProviderId)
-
getPriority
public int getPriority()
-
setPriority
public void setPriority(int priority)
-
getSalt
@Deprecated public byte[] getSalt()
Deprecated.
-
setSalt
@Deprecated public void setSalt(byte[] salt)
Deprecated.
-
-