01: package com.sun.portal.rproxy.configservlet;
02:
03: /*
04: * Created by IntelliJ IDEA.
05: * User: Administrator
06: * Date: Dec 4, 2001
07: * Time: 5:04:08 PM
08: * To change template for new interface use
09: * Code Style | Class Templates options (Tools | IDE Options).
10: */
11:
12: import java.rmi.RemoteException;
13:
14: public interface ServiceHandler {
15: public Response handleRequest(Request request)
16: throws RemoteException;
17: }
|