Package com.ibm.fhir.cache
Interface CachingProxy.KeyGenerator
- 
- Enclosing class:
 - CachingProxy
 
public static interface CachingProxy.KeyGeneratorAn interface for generating cache keys used by the caching invocation handler to cache method results 
- 
- 
Field Summary
Fields Modifier and Type Field Description static CachingProxy.KeyGeneratorDEFAULTDefault implementation uses the method and argument parameters to generate a cache key 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CacheKeygenerate(Object target, Method method, Object[] args)Generate a cache key for the provided target object, method, and arguments. 
 - 
 
- 
- 
Field Detail
- 
DEFAULT
static final CachingProxy.KeyGenerator DEFAULT
Default implementation uses the method and argument parameters to generate a cache key 
 - 
 
 -