Interface Description.RequiredCache
-
- All Known Implementing Classes:
Cache
- Enclosing interface:
- Description
public static interface Description.RequiredCacheCaching requirements
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetIsPublic()Determine if Web Script content is for public cachingbooleangetMustRevalidate()Must cache re-validate to ensure content is freshbooleangetNeverCache()Determine if Web Script should ever be cached
-
-
-
Method Detail
-
getNeverCache
boolean getNeverCache()
Determine if Web Script should ever be cached- Returns:
- true => do not cache, false => caching may or not occur
-
getIsPublic
boolean getIsPublic()
Determine if Web Script content is for public caching- Returns:
- true => content is public, so allow cache
-
getMustRevalidate
boolean getMustRevalidate()
Must cache re-validate to ensure content is fresh- Returns:
- true => must re-validate
-
-