|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.cache.interceptor.CompositeCacheOperationSource
public class CompositeCacheOperationSource
Composite CacheOperationSource
implementation that iterates
over a given array of CacheOperationSource
instances.
Constructor Summary | |
---|---|
CompositeCacheOperationSource(CacheOperationSource... cacheOperationSources)
Create a new CompositeCacheOperationSource for the given sources. |
Method Summary | |
---|---|
Collection<CacheOperation> |
getCacheOperations(Method method,
Class<?> targetClass)
Return the collection of cache operations for this method, or null if the method contains no "cacheable" annotations. |
CacheOperationSource[] |
getCacheOperationSources()
Return the CacheOperationSource instances that this
CompositeCacheOperationSource combines. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public CompositeCacheOperationSource(CacheOperationSource... cacheOperationSources)
cacheOperationSources
- the CacheOperationSource instances to combineMethod Detail |
---|
public final CacheOperationSource[] getCacheOperationSources()
CacheOperationSource
instances that this
CompositeCacheOperationSource
combines.
public Collection<CacheOperation> getCacheOperations(Method method, Class<?> targetClass)
CacheOperationSource
null
if the method contains no "cacheable" annotations.
getCacheOperations
in interface CacheOperationSource
method
- the method to introspecttargetClass
- the target class (may be null
,
in which case the declaring class of the method must be used)
null
if
none found
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |