Class BrowserCacheFeature
java.lang.Object
org.jboss.resteasy.client.jaxrs.cache.BrowserCacheFeature
- All Implemented Interfaces:
Feature
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanconfigure(FeatureContext configuration) A call-back method called when the feature is to be enabled in a given runtime configuration scope.getCache()voidsetCache(BrowserCache cache)
-
Field Details
-
cache
-
-
Constructor Details
-
BrowserCacheFeature
public BrowserCacheFeature()
-
-
Method Details
-
getCache
-
setCache
-
configure
Description copied from interface:FeatureA call-back method called when the feature is to be enabled in a given runtime configuration scope. The responsibility of the feature is to properly update the supplied runtime configuration context and returntrueif the feature was successfully enabled orfalseotherwise.Note that under some circumstances the feature may decide not to enable itself, which is indicated by returning
false. In such case the configuration context does not add the feature to the collection of enabled features and a subsequent call toConfiguration.isEnabled(Feature)orConfiguration.isEnabled(Class)method would returnfalse.
-