01: /*
02: * $Header: /cvsroot/mvnforum/myvietnam/src/net/myvietnam/mvncore/service/URLResolverService.java,v 1.1 2007/05/04 18:43:53 minhnn Exp $
03: * $Author: minhnn $
04: * $Revision: 1.1 $
05: * $Date: 2007/05/04 18:43:53 $
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: Minh Nguyen
32: */
33: package net.myvietnam.mvncore.service;
34:
35: import javax.servlet.http.HttpServletRequest;
36: import javax.servlet.http.HttpServletResponse;
37:
38: import net.myvietnam.mvncore.web.GenericRequest;
39: import net.myvietnam.mvncore.web.GenericResponse;
40:
41: public interface URLResolverService {
42:
43: public static final int RENDER_URL = 0;
44: public static final int ACTION_URL = 1;
45: public static final int UPLOAD_URL = 2;
46:
47: public boolean isSupportServlet();
48:
49: public boolean isSupportPortlet();
50:
51: //We need GenericRequest for drawing CategoryTree
52: //see getAttribute("javax.portlet.request") in Spec for detail
53: public String encodeURL(HttpServletRequest request,
54: HttpServletResponse response, String url);
55:
56: public String encodeURL(GenericRequest request,
57: GenericResponse response, String url);
58:
59: public String encodeURL(HttpServletRequest request,
60: HttpServletResponse response, String url, int option);
61:
62: public String encodeURL(GenericRequest request,
63: GenericResponse response, String url, int option);
64:
65: public String encodeURL(HttpServletRequest request,
66: HttpServletResponse response, String url, int option,
67: String mode);
68:
69: public String encodeURL(GenericRequest request,
70: GenericResponse response, String url, int option,
71: String mode);
72:
73: public String decodeAction(GenericRequest request,
74: GenericResponse response);
75:
76: public String generateFormAction(HttpServletRequest request,
77: HttpServletResponse response, String url);
78:
79: public String getActionParam();
80:
81: }
|