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 SummaryFields Modifier and Type Field Description protected LongcreatedDateprotected StringcredentialDataprotected Stringidprotected intpriorityprotected StringrealmIdprotected byte[]saltDeprecated.protected StringsecretDataprotected StringstorageProviderIdprotected Stringtypeprotected StringuserIdprotected StringuserLabel
 - 
Constructor SummaryConstructors Constructor Description FederatedUserCredentialEntity()
 - 
Method SummaryAll 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- 
idprotected String id 
 - 
secretDataprotected String secretData 
 - 
credentialDataprotected String credentialData 
 - 
typeprotected String type 
 - 
userLabelprotected String userLabel 
 - 
createdDateprotected Long createdDate 
 - 
userIdprotected String userId 
 - 
realmIdprotected String realmId 
 - 
storageProviderIdprotected String storageProviderId 
 - 
priorityprotected int priority 
 - 
salt@Deprecated protected byte[] salt Deprecated.
 
- 
 - 
Method Detail- 
getIdpublic String getId() 
 - 
setIdpublic void setId(String id) 
 - 
getTypepublic String getType() 
 - 
setTypepublic void setType(String type) 
 - 
getUserLabelpublic String getUserLabel() 
 - 
setUserLabelpublic void setUserLabel(String userLabel) 
 - 
getCreatedDatepublic Long getCreatedDate() 
 - 
setCreatedDatepublic void setCreatedDate(Long createdDate) 
 - 
getSecretDatapublic String getSecretData() 
 - 
setSecretDatapublic void setSecretData(String secretData) 
 - 
getCredentialDatapublic String getCredentialData() 
 - 
setCredentialDatapublic void setCredentialData(String credentialData) 
 - 
getUserIdpublic String getUserId() 
 - 
setUserIdpublic void setUserId(String userId) 
 - 
getRealmIdpublic String getRealmId() 
 - 
setRealmIdpublic void setRealmId(String realmId) 
 - 
getStorageProviderIdpublic String getStorageProviderId() 
 - 
setStorageProviderIdpublic void setStorageProviderId(String storageProviderId) 
 - 
getPrioritypublic int getPriority() 
 - 
setPrioritypublic void setPriority(int priority) 
 - 
getSalt@Deprecated public byte[] getSalt() Deprecated.
 - 
setSalt@Deprecated public void setSalt(byte[] salt) Deprecated.
 
- 
 
-