KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * $Header: /cvsroot/mvnforum/myvietnam/src/net/myvietnam/mvncore/web/impl/URLResolverServletImpl.java,v 1.11 2006/04/14 16:03:56 minhnn Exp $
3  * $Author: minhnn $
4  * $Revision: 1.11 $
5  * $Date: 2006/04/14 16:03:56 $
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: Minh Nguyen
32  */

33 package net.myvietnam.mvncore.web.impl;
34
35 import javax.servlet.http.HttpServletRequest JavaDoc;
36 import javax.servlet.http.HttpServletResponse JavaDoc;
37
38 import net.myvietnam.mvncore.MVNCoreConfig;
39 import net.myvietnam.mvncore.web.*;
40
41 public class URLResolverServletImpl implements URLResolver {
42
43     public boolean isSupportServlet() {
44         return true;
45     }
46
47     public boolean isSupportPortlet() {
48         return false;
49     }
50
51     public String JavaDoc encodeURL(HttpServletRequest JavaDoc request, HttpServletResponse JavaDoc response, String JavaDoc url) {
52         if (MVNCoreConfig.getEnableEncodeURL()) {
53             url = response.encodeURL(url);
54         }
55         return url;
56     }
57
58     public String JavaDoc encodeURL(HttpServletRequest JavaDoc request, HttpServletResponse JavaDoc response, String JavaDoc url, int option) {
59         if (MVNCoreConfig.getEnableEncodeURL()) {
60             url = response.encodeURL(url);
61         }
62         return url;
63     }
64
65     public String JavaDoc encodeURL(HttpServletRequest JavaDoc request, HttpServletResponse JavaDoc response, String JavaDoc url, int option, String JavaDoc mode) {
66         // not implemented for cross module links
67
if (MVNCoreConfig.getEnableEncodeURL()) {
68             url = response.encodeURL(url);
69         }
70         return url;
71     }
72
73     public String JavaDoc decodeAction(GenericRequest request, GenericResponse response) {
74         return "";
75     }
76
77     public String JavaDoc generateFormAction(HttpServletRequest JavaDoc request, HttpServletResponse JavaDoc response, String JavaDoc url) {
78         return "";
79     }
80
81     public String JavaDoc getActionParam() {
82         return "";
83     }
84
85 }
86
Popular Tags