01: /* Copyright (c) 2001 - 2007 TOPP - www.openplans.org. All rights reserved.
02: * This code is licensed under the GPL 2.0 license, availible at the root
03: * application directory.
04: */
05: package org.geoserver.ows;
06:
07: import javax.servlet.http.HttpServletRequest;
08:
09: /**
10: * An interface for request readers to implement to flag to the dispatcher
11: * that they wish to be given an instance of the current http request.
12: * <p>
13: * Note: This interface is added to allow existing services to adapt to the
14: * new ows dispatch framework.
15: * </p>
16: * @author Justin Deoliveira, The Open Planning Project, jdeolive@openplans.org
17: *
18: * @deprecated Client code should not implement this interface
19: */
20: public interface HttpServletRequestAware {
21: void setHttpRequest(HttpServletRequest request);
22: }
|