KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > objectserver > context > ObjectManagerResultsContext


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.objectserver.context;
5
6 import com.tc.async.api.EventContext;
7 import com.tc.objectserver.api.ObjectManagerLookupResults;
8
9 import java.util.Set JavaDoc;
10
11 /**
12  * @author steve Interface for a context that needs ObjectManager look results
13  */

14 public interface ObjectManagerResultsContext extends EventContext {
15   
16   public Set JavaDoc getLookupIDs();
17   
18   public Set JavaDoc getNewObjectIDs();
19
20   public void setResults(ObjectManagerLookupResults results);
21   
22 }
Popular Tags