| org.apache.jetspeed.cache.ContentCacheKeyGenerator
All known Subclasses: org.apache.jetspeed.cache.impl.JetspeedCacheKeyGenerator,
ContentCacheKeyGenerator | public interface ContentCacheKeyGenerator (Code) | |
Provides interface to Jetspeed for content cache key generation
author: David Sean Taylor version: $Id: $ |
createCacheKey | ContentCacheKey createCacheKey(RequestContext context, String windowId)(Code) | | Normalized and pluggable cache key generator
Parameters: context - Parameters: windowId - The window id of the portlet to be cached. since: 2.1.2 |
createSessionCacheKey | ContentCacheKey createSessionCacheKey(String sessionid, String pipeline, String windowId)(Code) | | Create a cache key without request context information, but by providing required parameters sessinid and windowid
Parameters: sessionid - Parameters: pipeline - "desktop" or "portal" Parameters: windowId - |
createUserCacheKey | ContentCacheKey createUserCacheKey(String username, String pipeline, String windowId)(Code) | | Create a cache key without request context information, but by providing required parameters username and windowid
Parameters: username - Parameters: pipeline - "desktop" or "portal" Parameters: windowId - |
isCacheBySessionId | boolean isCacheBySessionId()(Code) | | return true if caching is by session id, not username
|
isCacheByUsername | boolean isCacheByUsername()(Code) | | return true if caching is by username, not sessionid
|
|
|