01: package ri.cache.transport.events;
02:
03: /**
04: * CacheInvalidateResponse
05: *
06: * @author Brian Goetz
07: */
08: public class CacheInvalidateResponse implements CacheResponse {
09: public final boolean wasPresent;
10:
11: public CacheInvalidateResponse(boolean wasPresent) {
12: this.wasPresent = wasPresent;
13: }
14: }
|