Class ResourceServerAdapter
- java.lang.Object
- 
- org.keycloak.authorization.model.AbstractAuthorizationModel
- 
- org.keycloak.authorization.jpa.store.ResourceServerAdapter
 
 
- 
- All Implemented Interfaces:
- ResourceServer,- JpaModel<ResourceServerEntity>
 
 public class ResourceServerAdapter extends AbstractAuthorizationModel implements ResourceServer, JpaModel<ResourceServerEntity> - Version:
- $Revision: 1 $
- Author:
- Bill Burke
 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface org.keycloak.authorization.model.ResourceServerResourceServer.SearchableFields
 
- 
 - 
Constructor SummaryConstructors Constructor Description ResourceServerAdapter(RealmModel realm, ResourceServerEntity entity, javax.persistence.EntityManager em, StoreFactory storeFactory)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetClientId()Returns id of a client that thisResourceServeris associated withDecisionStrategygetDecisionStrategy()Returns theDecisionStrategyconfigured for this instance.ResourceServerEntitygetEntity()StringgetId()Returns the unique identifier for this instance.PolicyEnforcementModegetPolicyEnforcementMode()Returns thePolicyEnforcementModeconfigured for this instance.RealmModelgetRealm()Returns reference of a realm that thisResourceServerbelongs to.inthashCode()booleanisAllowRemoteResourceManagement()Indicates if the resource server is allowed to manage its own resources remotely using the Protection API.voidsetAllowRemoteResourceManagement(boolean allowRemoteResourceManagement)Indicates if the resource server is allowed to manage its own resources remotely using the Protection API.voidsetDecisionStrategy(DecisionStrategy decisionStrategy)Defines aDecisionStrategyfor this instance, indicating how permissions should be granted depending on the givendecisionStrategy.voidsetPolicyEnforcementMode(PolicyEnforcementMode enforcementMode)Defines aPolicyEnforcementModefor this instance.static ResourceServerEntitytoEntity(javax.persistence.EntityManager em, ResourceServer resource)- 
Methods inherited from class org.keycloak.authorization.model.AbstractAuthorizationModelthrowExceptionIfReadonly
 
- 
 
- 
- 
- 
Constructor Detail- 
ResourceServerAdapterpublic ResourceServerAdapter(RealmModel realm, ResourceServerEntity entity, javax.persistence.EntityManager em, StoreFactory storeFactory) 
 
- 
 - 
Method Detail- 
getEntitypublic ResourceServerEntity getEntity() - Specified by:
- getEntityin interface- JpaModel<ResourceServerEntity>
 
 - 
getIdpublic String getId() Description copied from interface:ResourceServerReturns the unique identifier for this instance.- Specified by:
- getIdin interface- ResourceServer
- Returns:
- the unique identifier for this instance
 
 - 
isAllowRemoteResourceManagementpublic boolean isAllowRemoteResourceManagement() Description copied from interface:ResourceServerIndicates if the resource server is allowed to manage its own resources remotely using the Protection API.- Specified by:
- isAllowRemoteResourceManagementin interface- ResourceServer
- Returns:
- trueif the resource server is allowed to managed them remotely
 
 - 
setAllowRemoteResourceManagementpublic void setAllowRemoteResourceManagement(boolean allowRemoteResourceManagement) Description copied from interface:ResourceServerIndicates if the resource server is allowed to manage its own resources remotely using the Protection API.- Specified by:
- setAllowRemoteResourceManagementin interface- ResourceServer
- Parameters:
- allowRemoteResourceManagement-- trueif the resource server is allowed to managed them remotely
 
 - 
getPolicyEnforcementModepublic PolicyEnforcementMode getPolicyEnforcementMode() Description copied from interface:ResourceServerReturns thePolicyEnforcementModeconfigured for this instance.- Specified by:
- getPolicyEnforcementModein interface- ResourceServer
- Returns:
- the PolicyEnforcementModeconfigured for this instance.
 
 - 
setPolicyEnforcementModepublic void setPolicyEnforcementMode(PolicyEnforcementMode enforcementMode) Description copied from interface:ResourceServerDefines aPolicyEnforcementModefor this instance.- Specified by:
- setPolicyEnforcementModein interface- ResourceServer
- Parameters:
- enforcementMode- one of the available options in- PolicyEnforcementMode
 
 - 
getDecisionStrategypublic DecisionStrategy getDecisionStrategy() Description copied from interface:ResourceServerReturns theDecisionStrategyconfigured for this instance.- Specified by:
- getDecisionStrategyin interface- ResourceServer
- Returns:
- the decision strategy
 
 - 
setDecisionStrategypublic void setDecisionStrategy(DecisionStrategy decisionStrategy) Description copied from interface:ResourceServerDefines aDecisionStrategyfor this instance, indicating how permissions should be granted depending on the givendecisionStrategy.- Specified by:
- setDecisionStrategyin interface- ResourceServer
- Parameters:
- decisionStrategy- the decision strategy
 
 - 
getClientIdpublic String getClientId() Description copied from interface:ResourceServerReturns id of a client that thisResourceServeris associated with- Specified by:
- getClientIdin interface- ResourceServer
- Returns:
- id of client
 
 - 
getRealmpublic RealmModel getRealm() Description copied from interface:ResourceServerReturns reference of a realm that thisResourceServerbelongs to.- Specified by:
- getRealmin interface- ResourceServer
- Returns:
- reference of a realm
 
 - 
toEntitypublic static ResourceServerEntity toEntity(javax.persistence.EntityManager em, ResourceServer resource) 
 
- 
 
-