01: /* Copyright 2001 The JA-SIG Collaborative. All rights reserved.
02: * See license distributed with this file and
03: * available online at http://www.uportal.org/license.html
04: */
05:
06: package org.jasig.portal;
07:
08: import javax.servlet.http.HttpServletResponse;
09:
10: /**
11: * An interface that a channel that wants to
12: * have direct access to the HttpServletResponse object must implement.
13: *
14: * @author Eric Dalquist <a href="mailto:edalquist@unicon.net">edalquist@unicon.net</a>
15: * @version $Revision: 34807 $
16: */
17: public interface IDirectResponse {
18:
19: /**
20: * Sets the HttpServletResponse for the channel to use.
21: *
22: * @param response The HttpServletResponse for the channel to use.
23: */
24: public void setResponse(HttpServletResponse response);
25: }
|