KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > object > ObjectRequestContext


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.object;
5
6 import com.tc.net.protocol.tcm.ChannelID;
7
8 import java.util.Set JavaDoc;
9
10 public interface ObjectRequestContext {
11   
12   public ObjectRequestID getRequestID();
13   
14   public ChannelID getChannelID();
15   
16   public Set JavaDoc getObjectIDs();
17   
18   public int getRequestDepth();
19
20 }
Popular Tags