1 28 package org.objectweb.carol.rmi.jrmp.interceptor; 29 30 import java.util.Collection ; 31 32 37 public interface JRequestInfo { 38 39 45 public JServiceContext get_request_service_context(int id); 46 47 52 public Collection get_all_request_service_context(); 53 54 60 public JServiceContext get_reply_service_context(int id); 61 62 66 public Collection get_all_reply_service_context(); 67 68 71 public boolean hasContexts(); 72 73 76 public void clearAllContexts(); 77 } | Popular Tags |