01: /*
02: * Retriever.java
03: *
04: * $Author: ss150821 $
05: *
06: * $Date: 2005/11/30 11:27:22 $ $Revision: 1.3 $
07: *
08: * Copyright (c) 1996 Sun Microsystems, Inc. All Rights Reserved.
09: *
10: * Developed by SunPS and SunIR
11: */
12:
13: package com.sun.portal.rproxy.connectionhandler;
14:
15: /**
16: * Interface all Retrievers must implment. Retrievers are used to get a Response
17: * object for a Specific Request.
18: *
19: * @author Gabriel Lawrence
20: */
21: // JP_Declaration Retriever 195
22: public interface Retriever {
23: // JP_Operation "getResponse(Request theRequest)" 128
24: public Response getResponse(Request theRequest,
25: String destinationHost, Integer logId);
26:
27: public Response getResponse2(Request theRequest,
28: String destinationHost, Integer logId, byte[] param);
29: }
|