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; 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 getLookupIDs(); 17 18 public Set getNewObjectIDs(); 19 20 public void setResults(ObjectManagerLookupResults results); 21 22 }