org.springframework.cache.interceptor
Class CacheEvictOperation

java.lang.Object
  extended by org.springframework.cache.interceptor.CacheOperation
      extended by org.springframework.cache.interceptor.CacheEvictOperation

public class CacheEvictOperation
extends CacheOperation

Class describing a cache 'evict' operation.

Since:
3.1
Author:
Costin Leau

Field Summary
private  boolean cacheWide
           
 
Constructor Summary
CacheEvictOperation()
           
 
Method Summary
protected  java.lang.StringBuilder getOperationDescription()
          Return an identifying description for this caching operation.
 boolean isCacheWide()
           
 void setCacheWide(boolean cacheWide)
           
 
Methods inherited from class org.springframework.cache.interceptor.CacheOperation
equals, getCacheNames, getCondition, getKey, getName, hashCode, setCacheName, setCacheNames, setCondition, setKey, setName, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

cacheWide

private boolean cacheWide
Constructor Detail

CacheEvictOperation

public CacheEvictOperation()
Method Detail

setCacheWide

public void setCacheWide(boolean cacheWide)

isCacheWide

public boolean isCacheWide()

getOperationDescription

protected java.lang.StringBuilder getOperationDescription()
Description copied from class: CacheOperation
Return an identifying description for this caching operation.

Available to subclasses, for inclusion in their toString() result.

Overrides:
getOperationDescription in class CacheOperation