01: /*
02: * $Header: /cvsroot/mvnforum/myvietnam/src/net/myvietnam/mvncore/web/GenericRequest.java,v 1.12 2007/01/27 04:18:01 dungbtm Exp $
03: * $Author: dungbtm $
04: * $Revision: 1.12 $
05: * $Date: 2007/01/27 04:18:01 $
06: *
07: * ====================================================================
08: *
09: * Copyright (C) 2002-2007 by MyVietnam.net
10: *
11: * All copyright notices regarding MyVietnam and MyVietnam CoreLib
12: * MUST remain intact in the scripts and source code.
13: *
14: * This library is free software; you can redistribute it and/or
15: * modify it under the terms of the GNU Lesser General Public
16: * License as published by the Free Software Foundation; either
17: * version 2.1 of the License, or (at your option) any later version.
18: *
19: * This library is distributed in the hope that it will be useful,
20: * but WITHOUT ANY WARRANTY; without even the implied warranty of
21: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22: * Lesser General Public License for more details.
23: *
24: * You should have received a copy of the GNU Lesser General Public
25: * License along with this library; if not, write to the Free Software
26: * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27: *
28: * Correspondence and Marketing Questions can be sent to:
29: * info at MyVietnam net
30: *
31: * @author: Phong Ta Quoc
32: */
33: package net.myvietnam.mvncore.web;
34:
35: import java.util.*;
36:
37: import javax.servlet.http.HttpServletRequest;
38:
39: public interface GenericRequest {
40:
41: public HttpServletRequest getServletRequest();
42:
43: public Object getPortletRequest();
44:
45: public boolean isServletRequest();
46:
47: public boolean isPortletRequest();
48:
49: // below are common methods for both Servlet and Portlet request
50:
51: public Object getAttribute(String name);
52:
53: public void setAttribute(String name, Object value);
54:
55: public Enumeration getAttributeNames();
56:
57: public String getAuthType();
58:
59: public String getContextPath();
60:
61: public Locale getLocale();
62:
63: public Enumeration getLocales();
64:
65: public String getParameter(String name);
66:
67: public Map getParameterMap();
68:
69: public Enumeration getParameterNames();
70:
71: public String[] getParameterValues(String name);
72:
73: public String getSessionId();
74:
75: public String getRemoteUser();
76:
77: public String getRemoteAddr();
78:
79: public String getQueryString();
80:
81: // get from contexts
82: public String getRealPath(String path);
83:
84: // get session's methods
85: public void setSessionAttribute(String name, Object value);
86:
87: public Object getSessionAttribute(String name);
88:
89: public String getMethod();
90: }
|