Class ResourceServerAdapter
- java.lang.Object
-
- org.keycloak.models.cache.infinispan.authorization.ResourceServerAdapter
-
- All Implemented Interfaces:
CachedModel<ResourceServer>,ResourceServer
public class ResourceServerAdapter extends Object implements ResourceServer, CachedModel<ResourceServer>
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.keycloak.authorization.model.ResourceServer
ResourceServer.SearchableFields
-
-
Field Summary
Fields Modifier and Type Field Description protected CachedResourceServercachedprotected StoreFactoryCacheSessioncacheSessionprotected booleaninvalidatedprotected ResourceServerupdated
-
Constructor Summary
Constructors Constructor Description ResourceServerAdapter(RealmModel realm, CachedResourceServer cached, StoreFactoryCacheSession cacheSession)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)longgetCacheTimestamp()When was the model was loaded from database.StringgetClientId()Returns id of a client that thisResourceServeris associated withDecisionStrategygetDecisionStrategy()Returns theDecisionStrategyconfigured for this instance.ResourceServergetDelegateForUpdate()Invalidates the cache for this model and returns a delegate that represents the actual data providerStringgetId()Returns the unique identifier for this instance.PolicyEnforcementModegetPolicyEnforcementMode()Returns thePolicyEnforcementModeconfigured for this instance.RealmModelgetRealm()Returns reference of a realm that thisResourceServerbelongs to.inthashCode()voidinvalidate()Invalidate the cache for this modelprotected voidinvalidateFlag()booleanisAllowRemoteResourceManagement()Indicates if the resource server is allowed to manage its own resources remotely using the Protection API.protected booleanisUpdated()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.
-
-
-
Field Detail
-
cached
protected CachedResourceServer cached
-
cacheSession
protected StoreFactoryCacheSession cacheSession
-
updated
protected ResourceServer updated
-
invalidated
protected boolean invalidated
-
-
Constructor Detail
-
ResourceServerAdapter
public ResourceServerAdapter(RealmModel realm, CachedResourceServer cached, StoreFactoryCacheSession cacheSession)
-
-
Method Detail
-
getDelegateForUpdate
public ResourceServer getDelegateForUpdate()
Description copied from interface:CachedModelInvalidates the cache for this model and returns a delegate that represents the actual data provider- Specified by:
getDelegateForUpdatein interfaceCachedModel<ResourceServer>- Returns:
-
invalidateFlag
protected void invalidateFlag()
-
invalidate
public void invalidate()
Description copied from interface:CachedModelInvalidate the cache for this model- Specified by:
invalidatein interfaceCachedModel<ResourceServer>
-
getCacheTimestamp
public long getCacheTimestamp()
Description copied from interface:CachedModelWhen was the model was loaded from database.- Specified by:
getCacheTimestampin interfaceCachedModel<ResourceServer>- Returns:
-
isUpdated
protected boolean isUpdated()
-
getId
public String getId()
Description copied from interface:ResourceServerReturns the unique identifier for this instance.- Specified by:
getIdin interfaceResourceServer- Returns:
- the unique identifier for this instance
-
isAllowRemoteResourceManagement
public 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 interfaceResourceServer- Returns:
trueif the resource server is allowed to managed them remotely
-
setAllowRemoteResourceManagement
public 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 interfaceResourceServer- Parameters:
allowRemoteResourceManagement-trueif the resource server is allowed to managed them remotely
-
getPolicyEnforcementMode
public PolicyEnforcementMode getPolicyEnforcementMode()
Description copied from interface:ResourceServerReturns thePolicyEnforcementModeconfigured for this instance.- Specified by:
getPolicyEnforcementModein interfaceResourceServer- Returns:
- the
PolicyEnforcementModeconfigured for this instance.
-
setPolicyEnforcementMode
public void setPolicyEnforcementMode(PolicyEnforcementMode enforcementMode)
Description copied from interface:ResourceServerDefines aPolicyEnforcementModefor this instance.- Specified by:
setPolicyEnforcementModein interfaceResourceServer- Parameters:
enforcementMode- one of the available options inPolicyEnforcementMode
-
getDecisionStrategy
public DecisionStrategy getDecisionStrategy()
Description copied from interface:ResourceServerReturns theDecisionStrategyconfigured for this instance.- Specified by:
getDecisionStrategyin interfaceResourceServer- Returns:
- the decision strategy
-
setDecisionStrategy
public 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 interfaceResourceServer- Parameters:
decisionStrategy- the decision strategy
-
getClientId
public String getClientId()
Description copied from interface:ResourceServerReturns id of a client that thisResourceServeris associated with- Specified by:
getClientIdin interfaceResourceServer- Returns:
- id of client
-
getRealm
public RealmModel getRealm()
Description copied from interface:ResourceServerReturns reference of a realm that thisResourceServerbelongs to.- Specified by:
getRealmin interfaceResourceServer- Returns:
- reference of a realm
-
-