KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas > webapp > jonasadmin > jonasserver > ServletServerForm


1 /**
2  * JOnAS: Java(TM) Open Application Server
3  * Copyright (C) 1999 Bull S.A.
4  * Contact: jonas-team@objectweb.org
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19  * USA
20  *
21  * --------------------------------------------------------------------------
22  * $Id: ServletServerForm.java,v 1.4 2005/04/20 11:58:42 danesa Exp $
23  * --------------------------------------------------------------------------
24  */

25
26 package org.objectweb.jonas.webapp.jonasadmin.jonasserver;
27
28 import javax.servlet.http.HttpServletRequest JavaDoc;
29
30 import org.apache.struts.action.ActionErrors;
31 import org.apache.struts.action.ActionForm;
32 import org.apache.struts.action.ActionMapping;
33
34 /**
35  * @author Michel-Ange ANTON
36  */

37
38 public final class ServletServerForm extends ActionForm {
39
40 // ------------------------------------------------------------- Properties Variables
41

42     private String JavaDoc serverName = null;
43     private String JavaDoc serverVersion = null;
44     private boolean serverCatalina = false;
45     private String JavaDoc serverCatalinaService = null;
46     private String JavaDoc serverCatalinaEngine = null;
47     private String JavaDoc serverCatalinaDefaultHost = null;
48     private String JavaDoc forwardAfter = null;
49
50 // ------------------------------------------------------------- Public Methods
51

52     /**
53      * Reset all properties to their default values.
54      *
55      * @param mapping The mapping used to select this instance
56      * @param request The servlet request we are processing
57      */

58     public void reset(ActionMapping mapping, HttpServletRequest JavaDoc request) {
59     }
60
61     /**
62      * Validate the properties that have been set from this HTTP request,
63      * and return an <code>ActionErrors</code> object that encapsulates any
64      * validation errors that have been found. If no errors are found, return
65      * <code>null</code> or an <code>ActionErrors</code> object with no
66      * recorded error messages.
67      *
68      * @param mapping The mapping used to select this instance
69      * @param request The servlet request we are processing
70      * @return List of errors
71      */

72     public ActionErrors validate(ActionMapping mapping, HttpServletRequest JavaDoc request) {
73         return new ActionErrors();
74     }
75
76 // ------------------------------------------------------------- Properties Methods
77

78     public String JavaDoc getServerName() {
79         return serverName;
80     }
81
82     public void setServerName(String JavaDoc serverName) {
83         this.serverName = serverName;
84     }
85
86     public String JavaDoc getServerVersion() {
87         return serverVersion;
88     }
89
90     public void setServerVersion(String JavaDoc serverVersion) {
91         this.serverVersion = serverVersion;
92     }
93
94     public String JavaDoc getServerCatalinaService() {
95         return serverCatalinaService;
96     }
97
98     public void setServerCatalinaService(String JavaDoc serverCatalinaService) {
99         this.serverCatalinaService = serverCatalinaService;
100     }
101
102     public boolean isServerCatalina() {
103         return serverCatalina;
104     }
105
106     public void setServerCatalina(boolean serverCatalina) {
107         this.serverCatalina = serverCatalina;
108     }
109
110     public String JavaDoc getServerCatalinaEngine() {
111         return serverCatalinaEngine;
112     }
113
114     public void setServerCatalinaEngine(String JavaDoc serverCatalinaEngine) {
115         this.serverCatalinaEngine = serverCatalinaEngine;
116     }
117
118     public String JavaDoc getServerCatalinaDefaultHost() {
119         return serverCatalinaDefaultHost;
120     }
121
122     public void setServerCatalinaDefaultHost(String JavaDoc serverCatalinaDefaultHost) {
123         this.serverCatalinaDefaultHost = serverCatalinaDefaultHost;
124     }
125
126     public String JavaDoc getForwardAfter() {
127         return forwardAfter;
128     }
129
130     public void setForwardAfter(String JavaDoc forwardAfter) {
131         this.forwardAfter = forwardAfter;
132     }
133
134 }
135
Popular Tags