Interface JCacheOperationSource
- All Known Implementing Classes:
AbstractFallbackJCacheOperationSource,AnnotationJCacheOperationSource,DefaultJCacheOperationSource
public interface JCacheOperationSource
Interface used byJCacheInterceptor. Implementations know how to source cache operation attributes from standard JSR-107 annotations.- Since:
- 4.1
- Author:
- Stephane Nicoll
- See Also:
CacheOperationSource
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JCacheOperation<?>getCacheOperation(Method method, Class<?> targetClass)Return the cache operations for this method, ornullif the method contains no JSR-107 related metadata.
Method Detail
getCacheOperation
JCacheOperation<?> getCacheOperation(Method method, Class<?> targetClass)
Return the cache operations for this method, ornullif the method contains no JSR-107 related metadata.- Parameters:
method- the method to introspecttargetClass- the target class (may benull, in which case the declaring class of the method must be used)- Returns:
- the cache operation for this method, or
nullif none found