01: /*
02: ItsNat Java Web Application Framework
03: Copyright (C) 2007 Innowhere Software Services S.L., Spanish Company
04: Author: Jose Maria Arranz Santamaria
05:
06: This program is free software: you can redistribute it and/or modify
07: it under the terms of the GNU Affero General Public License as published by
08: the Free Software Foundation, either version 3 of the License, or
09: (at your option) any later version. See the GNU Affero General Public
10: License for more details. See the copy of the GNU Affero General Public License
11: included in this program. If not, see <http://www.gnu.org/licenses/>.
12: */
13:
14: package org.itsnat.core.http;
15:
16: import org.itsnat.core.ItsNatServletRequest;
17: import javax.servlet.http.HttpServletRequest;
18:
19: /**
20: * Is the ItsNat wrapper of the <code>javax.servlet.http.HttpServletRequest</code> object.
21: *
22: * @author Jose Maria Arranz Santamaria
23: */
24: public interface ItsNatHttpServletRequest extends ItsNatServletRequest {
25: /**
26: * Returns the wrapped <code>javax.servlet.http.HttpServletRequest</code> object.
27: *
28: * @return the wrapped servlet request object. Can not be null.
29: */
30: public HttpServletRequest getHttpServletRequest();
31:
32: /**
33: * Returns the ItsNat HTTP servlet associated to this request.
34: *
35: * @return the ItsNat HTTP servlet of this request. Can not be null.
36: */
37: public ItsNatHttpServlet getItsNatHttpServlet();
38:
39: /**
40: * Returns the ItsNat HTTP session associated to this request.
41: *
42: * @return the ItsNat HTTP session of this request. Can not be null.
43: */
44: public ItsNatHttpSession getItsNatHttpSession();
45: }
|