01: /*
02: * $Header: /cvsroot/mvnforum/myvietnam/src/net/myvietnam/mvncore/info/ServletInfo.java,v 1.10 2007/01/15 10:31:14 dungbtm Exp $
03: * $Author: dungbtm $
04: * $Revision: 1.10 $
05: * $Date: 2007/01/15 10:31:14 $
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: * @author: Mai Nguyen
33: */
34: package net.myvietnam.mvncore.info;
35:
36: import javax.servlet.ServletContext;
37:
38: public class ServletInfo {
39:
40: private String serverInfo = null;
41: private int majorVersion = 0;
42: private int minorVersion = 0;
43: private String servletVersion = null;
44:
45: public ServletInfo(ServletContext context) {
46: serverInfo = context.getServerInfo();
47: majorVersion = context.getMajorVersion();
48: minorVersion = context.getMinorVersion();
49: servletVersion = new StringBuffer().append(majorVersion)
50: .append('.').append(minorVersion).toString();
51: }
52:
53: public int getMajorVersion() {
54: return majorVersion;
55: }
56:
57: public int getMinorVersion() {
58: return minorVersion;
59: }
60:
61: public String getServerInfo() {
62: return serverInfo;
63: }
64:
65: public String getServletVersion() {
66: return servletVersion;
67: }
68: }
|