Package org.keycloak.models.map.user
Interface MapUserConsentEntity
-
- All Superinterfaces:
UpdatableEntity
- All Known Implementing Classes:
HotRodUserConsentEntityDelegate
,JpaUserConsentEntity
,JpaUserConsentMetadata
,MapUserConsentEntityDelegate
,MapUserConsentEntityFieldDelegate
,MapUserConsentEntityImpl
,MapUserConsentEntityImpl.Empty
public interface MapUserConsentEntity extends UpdatableEntity
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.UpdatableEntity
UpdatableEntity.Impl
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addGrantedClientScopesId(String scope)
static MapUserConsentEntity
fromModel(UserConsentModel model)
String
getClientId()
Long
getCreatedDate()
Set<String>
getGrantedClientScopesIds()
Long
getLastUpdatedDate()
void
removeGrantedClientScopesId(String scopesId)
void
setClientId(String clientId)
void
setCreatedDate(Long createdDate)
void
setGrantedClientScopesIds(Set<String> scopesIds)
void
setLastUpdatedDate(Long lastUpdatedDate)
static UserConsentModel
toModel(RealmModel realm, MapUserConsentEntity entity)
-
Methods inherited from interface org.keycloak.models.map.common.UpdatableEntity
clearUpdatedFlag, isUpdated
-
-
-
-
Method Detail
-
fromModel
static MapUserConsentEntity fromModel(UserConsentModel model)
-
toModel
static UserConsentModel toModel(RealmModel realm, MapUserConsentEntity entity)
-
getClientId
String getClientId()
-
setClientId
void setClientId(String clientId)
-
addGrantedClientScopesId
void addGrantedClientScopesId(String scope)
-
removeGrantedClientScopesId
void removeGrantedClientScopesId(String scopesId)
-
getCreatedDate
Long getCreatedDate()
-
setCreatedDate
void setCreatedDate(Long createdDate)
-
getLastUpdatedDate
Long getLastUpdatedDate()
-
setLastUpdatedDate
void setLastUpdatedDate(Long lastUpdatedDate)
-
-