KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > myvietnam > mvncore > web > impl > GenericRequestServletImpl


1 /*
2  * $Header: /cvsroot/mvnforum/myvietnam/src/net/myvietnam/mvncore/web/impl/GenericRequestServletImpl.java,v 1.6 2006/04/15 02:59:20 minhnn Exp $
3  * $Author: minhnn $
4  * $Revision: 1.6 $
5  * $Date: 2006/04/15 02:59:20 $
6  *
7  * ====================================================================
8  *
9  * Copyright (C) 2002-2006 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.impl;
34
35 import javax.servlet.ServletContext JavaDoc;
36 import javax.servlet.http.HttpServletRequest JavaDoc;
37 import javax.servlet.http.HttpServletRequestWrapper JavaDoc;
38
39 import net.myvietnam.mvncore.web.GenericRequest;
40
41 public class GenericRequestServletImpl extends HttpServletRequestWrapper JavaDoc implements GenericRequest {
42
43     private ServletContext JavaDoc context;
44
45     public GenericRequestServletImpl(HttpServletRequest JavaDoc request) {
46         super(request);
47     }
48
49     public GenericRequestServletImpl(HttpServletRequest JavaDoc request, ServletContext JavaDoc context) {
50         super(request);
51         this.context = context;
52     }
53
54     public HttpServletRequest JavaDoc getServletRequest() {
55         return (HttpServletRequest JavaDoc)getRequest();
56     }
57
58     public Object JavaDoc getPortletRequest() {
59         return null;
60     }
61
62     public boolean isServletRequest() {
63         return true;
64     }
65
66     public boolean isPortletRequest() {
67         return false;
68     }
69
70     public String JavaDoc getSessionId() {
71         return this.getSession().getId();
72     }
73
74     public String JavaDoc getRealPath(String JavaDoc path) {
75         if (context == null) {
76             throw new IllegalStateException JavaDoc("Cannot getRealPath with a null context.");
77         }
78
79         return context.getRealPath(path);
80     }
81     
82     public void setSessionAttribute(String JavaDoc name, Object JavaDoc value) {
83         this.getSession().setAttribute(name, value);
84     }
85     
86     public Object JavaDoc getSessionAttribute(String JavaDoc name) {
87         return this.getSession().getAttribute(name);
88     }
89
90 }
91
Popular Tags