java.lang.Object | ||||
↳ | com.microstrategy.utils.cache.CacheBase | |||
↳ | com.microstrategy.utils.cache.CustomizationsAwareCache | |||
↳ | com.microstrategy.utils.cache.FileCacheBase | |||
↳ | com.microstrategy.web.app.utils.cache.ResourceCache |
This is a cache for Resource
objects. A Resource
is basically
a wrapper of a file from which you can retrieve the file contents as a string or as a
DOM Document.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Object |
doLoad(CacheHint hint)
This abstract method is called by the load method to perform the actual loading.
| ||||||||||
Object |
getKey(CacheHint hint)
Returns the key of the cache element based on the hint.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
This abstract method is called by the load method to perform the actual loading. In this method, subclasses needs to load the file and parse it, and return the object they actually want cached.
CacheException |
---|
Returns the key of the cache element based on the hint. In this scenario, the hint itself is the key.
hint | the hint object. |
---|