01: /**
02: * $Id: ProvisionResponse.java,v 1.2 2005/04/19 22:24:50 mjain 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.service;
14:
15: import com.sun.portal.desktop.dp.DPChannel;
16:
17: import javax.servlet.http.HttpServletResponse;
18:
19: /**
20: *
21: * @author mjain
22: */
23: public class ProvisionResponse {
24:
25: HttpServletResponse _response;
26:
27: public ProvisionResponse(HttpServletResponse response) {
28: _response = response;
29: }
30:
31: public HttpServletResponse getHttpServletResponse() {
32: return _response;
33: }
34:
35: public void setHttpServletResponse(HttpServletResponse response) {
36: _response = response;
37: }
38: }
|