Uses of Class
org.restlet.data.CacheDirective

Packages that use CacheDirective
org.restlet Core classes of the API. 
org.restlet.data Information exchanged by components. 
org.restlet.resource Client and server resource classes. 
 

Uses of CacheDirective in org.restlet
 

Methods in org.restlet that return types with arguments of type CacheDirective
 List<CacheDirective> Message.getCacheDirectives()
          Returns the cache directives.

Note that when used with HTTP connectors, this property maps to the "Cache-Control" header.
 

Method parameters in org.restlet with type arguments of type CacheDirective
 void Message.setCacheDirectives(List<CacheDirective> cacheDirectives)
          Sets the cache directives.
 

Uses of CacheDirective in org.restlet.data
 

Methods in org.restlet.data that return CacheDirective
static CacheDirective CacheDirective.maxAge(int maxAge)
          Creates a "max-age" directive.
static CacheDirective CacheDirective.maxStale()
          Creates a "max-stale" directive.
static CacheDirective CacheDirective.maxStale(int maxStale)
          Creates a "max-stale" directive.
static CacheDirective CacheDirective.minFresh(int minFresh)
          Creates a "min-fresh" directive.
static CacheDirective CacheDirective.mustRevalidate()
          Creates a "must-revalidate" directive.
static CacheDirective CacheDirective.noCache()
          Creates a "no-cache" directive.
static CacheDirective CacheDirective.noCache(List<String> fieldNames)
          Creates a "no-cache" directive.
static CacheDirective CacheDirective.noCache(String fieldName)
          Creates a "no-cache" directive.
static CacheDirective CacheDirective.noStore()
          Creates a "no-store" directive.
static CacheDirective CacheDirective.noTransform()
          Creates a "no-transform" directive.
static CacheDirective CacheDirective.onlyIfCached()
          Creates a "onlyIfCached" directive.
static CacheDirective CacheDirective.privateInfo()
          Creates a "private" directive.
static CacheDirective CacheDirective.privateInfo(List<String> fieldNames)
          Creates a "private" directive.
static CacheDirective CacheDirective.privateInfo(String fieldName)
          Creates a "private" directive.
static CacheDirective CacheDirective.proxyMustRevalidate()
          Creates a "proxy-revalidate" directive.
static CacheDirective CacheDirective.publicInfo()
          Creates a "public" directive.
static CacheDirective CacheDirective.sharedMaxAge(int sharedMaxAge)
          Creates a "s-maxage" directive.
 

Uses of CacheDirective in org.restlet.resource
 

Methods in org.restlet.resource that return types with arguments of type CacheDirective
 List<CacheDirective> Resource.getRequestCacheDirectives()
          Returns the request cache directives.

Note that when used with HTTP connectors, this property maps to the "Cache-Control" header.
 List<CacheDirective> Resource.getResponseCacheDirectives()
          Returns the response cache directives.

Note that when used with HTTP connectors, this property maps to the "Cache-Control" header.
 



Copyright © 2005-2013 Restlet.