01: /**
02: * $Id: IWAYRequest.java,v 1.1 2005/03/14 09:21:15 nk137934 Exp $
03: * Copyright 2005 Sun Microsystems, Inc. All
04: * rights reserved. Use of this product is subject
05: * to license terms. Federal Acquisitions:
06: * Commercial Software -- Government Users
07: * Subject to Standard License Terms and
08: * Conditions.
09: *
10: * Sun, Sun Microsystems, the Sun logo, and Sun ONE
11: * are trademarks or registered trademarks of Sun Microsystems,
12: * Inc. in the United States and other countries.
13: */package com.sun.portal.iwayutil.connection;
14:
15: /**
16: * This class represents a unique request to the {@link IWAYConnection}.
17: * Every <code>IWAYRequest</code> is associated with an {@link IWayResponse}
18: * @author nk137934
19: */
20: public class IWAYRequest {
21:
22: private String requestString;
23:
24: /** Creates a new instance of IWAYRequest */
25: public IWAYRequest(String requestString) {
26: this .requestString = requestString;
27: }
28:
29: public String getRequestString() {
30: return requestString;
31: }
32:
33: public String toString() {
34: return requestString;
35: }
36: }
|