01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.object;
06:
07: import com.tc.net.groups.ClientID;
08:
09: import java.util.Set;
10:
11: public interface ObjectRequestContext {
12:
13: public ObjectRequestID getRequestID();
14:
15: public ClientID getClientID();
16:
17: public Set getObjectIDs();
18:
19: public int getRequestDepth();
20:
21: }
|