Interface PageCachingReferenceTypeService
-
@UsesOrderedConfiguration(PageCachingReferenceTypeService.class) public interface PageCachingReferenceTypeService
A service which defines whether cache page instances should have soft references pointing to it (the default) or strong, non-garbage-collectable ones. This service is a chain of command of itself.- Since:
- 5.8.3
- See Also:
ReferenceType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReferenceType
get(java.lang.String canonicalPageName)
Defines which reference type should be used to cache instances of the given page.
-
-
-
Method Detail
-
get
ReferenceType get(java.lang.String canonicalPageName)
Defines which reference type should be used to cache instances of the given page. Returningnull
means this implementation doesn't handle wit the given page.- Parameters:
canonicalPageName
- the name of the page.- Returns:
- a ReferenceType object or
null
-
-