Package org.keycloak.models.jpa.entities
Class UserConsentEntity
- java.lang.Object
- 
- org.keycloak.models.jpa.entities.UserConsentEntity
 
- 
 @Entity public class UserConsentEntity extends Object - Author:
- Marek Posolda
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected StringclientIdprotected StringclientStorageProviderprotected StringexternalClientIdprotected Stringidprotected UserEntityuser
 - 
Constructor SummaryConstructors Constructor Description UserConsentEntity()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetClientId()StringgetClientStorageProvider()LonggetCreatedDate()StringgetExternalClientId()Collection<UserConsentClientScopeEntity>getGrantedClientScopes()StringgetId()LonggetLastUpdatedDate()UserEntitygetUser()inthashCode()voidsetClientId(String clientId)voidsetClientStorageProvider(String clientStorageProvider)voidsetCreatedDate(Long createdDate)voidsetExternalClientId(String externalClientId)voidsetGrantedClientScopes(Collection<UserConsentClientScopeEntity> grantedClientScopes)voidsetId(String id)voidsetLastUpdatedDate(Long lastUpdatedDate)voidsetUser(UserEntity user)
 
- 
- 
- 
Field Detail- 
idprotected String id 
 - 
userprotected UserEntity user 
 - 
clientIdprotected String clientId 
 - 
clientStorageProviderprotected String clientStorageProvider 
 - 
externalClientIdprotected String externalClientId 
 
- 
 - 
Method Detail- 
getIdpublic String getId() 
 - 
setIdpublic void setId(String id) 
 - 
getUserpublic UserEntity getUser() 
 - 
setUserpublic void setUser(UserEntity user) 
 - 
getGrantedClientScopespublic Collection<UserConsentClientScopeEntity> getGrantedClientScopes() 
 - 
setGrantedClientScopespublic void setGrantedClientScopes(Collection<UserConsentClientScopeEntity> grantedClientScopes) 
 - 
getCreatedDatepublic Long getCreatedDate() 
 - 
setCreatedDatepublic void setCreatedDate(Long createdDate) 
 - 
getLastUpdatedDatepublic Long getLastUpdatedDate() 
 - 
setLastUpdatedDatepublic void setLastUpdatedDate(Long lastUpdatedDate) 
 - 
getClientIdpublic String getClientId() 
 - 
setClientIdpublic void setClientId(String clientId) 
 - 
getClientStorageProviderpublic String getClientStorageProvider() 
 - 
setClientStorageProviderpublic void setClientStorageProvider(String clientStorageProvider) 
 - 
getExternalClientIdpublic String getExternalClientId() 
 - 
setExternalClientIdpublic void setExternalClientId(String externalClientId) 
 
- 
 
-