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