1 28 package org.objectweb.carol.rmi.jrmp.interceptor; 29 30 import java.io.IOException ; 32 33 39 public interface JServerRequestInterceptor { 40 41 46 public void receive_request(JServerRequestInfo jri) throws IOException ; 47 48 53 public void send_reply(JServerRequestInfo jri) throws IOException ; 54 55 60 public void send_exception(JServerRequestInfo jri) throws IOException ; 61 62 67 public void send_other(JServerRequestInfo jri) throws IOException ; 68 69 73 public String name(); 74 } | Popular Tags |