KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > config > serverbeans > ManagerProperties


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
9  * glassfish/bootstrap/legal/CDDLv1.0.txt.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * Header Notice in each file and include the License file
15  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
16  * If applicable, add the following below the CDDL Header,
17  * with the fields enclosed by brackets [] replaced by
18  * you own identifying information:
19  * "Portions Copyrighted [year] [name of copyright owner]"
20  *
21  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22  */

23  
24 /**
25  * This generated bean class ManagerProperties matches the DTD element manager-properties
26  *
27  */

28
29 package com.sun.enterprise.config.serverbeans;
30
31 import org.w3c.dom.*;
32 import org.netbeans.modules.schema2beans.*;
33 import java.beans.*;
34 import java.util.*;
35 import java.io.Serializable JavaDoc;
36 import com.sun.enterprise.config.ConfigBean;
37 import com.sun.enterprise.config.ConfigException;
38 import com.sun.enterprise.config.StaleWriteConfigException;
39 import com.sun.enterprise.util.i18n.StringManager;
40
41 // BEGIN_NOI18N
42

43 public class ManagerProperties extends ConfigBean implements Serializable JavaDoc
44 {
45
46     static Vector comparators = new Vector();
47     private static final org.netbeans.modules.schema2beans.Version runtimeVersion = new org.netbeans.modules.schema2beans.Version(4, 2, 0);
48
49     static public final String JavaDoc ELEMENT_PROPERTY = "ElementProperty";
50
51     public ManagerProperties() {
52         this(Common.USE_DEFAULT_VALUES);
53     }
54
55     public ManagerProperties(int options)
56     {
57         super(comparators, runtimeVersion);
58         // Properties (see root bean comments for the bean graph)
59
initPropertyTables(1);
60         this.createProperty("property", ELEMENT_PROPERTY,
61             Common.TYPE_0_N | Common.TYPE_BEAN | Common.TYPE_KEY,
62             ElementProperty.class);
63         this.createAttribute(ELEMENT_PROPERTY, "name", "Name",
64                         AttrProp.CDATA | AttrProp.REQUIRED,
65                         null, null);
66         this.createAttribute(ELEMENT_PROPERTY, "value", "Value",
67                         AttrProp.CDATA | AttrProp.REQUIRED,
68                         null, null);
69         this.initialize(options);
70     }
71
72     // Setting the default values of the properties
73
void initialize(int options) {
74
75     }
76
77     // This attribute is an array, possibly empty
78
public void setElementProperty(int index, ElementProperty value) {
79         this.setValue(ELEMENT_PROPERTY, index, value);
80     }
81
82     // Get Method
83
public ElementProperty getElementProperty(int index) {
84         return (ElementProperty)this.getValue(ELEMENT_PROPERTY, index);
85     }
86
87     // This attribute is an array, possibly empty
88
public void setElementProperty(ElementProperty[] value) {
89         this.setValue(ELEMENT_PROPERTY, value);
90     }
91
92     // Getter Method
93
public ElementProperty[] getElementProperty() {
94         return (ElementProperty[])this.getValues(ELEMENT_PROPERTY);
95     }
96
97     // Return the number of properties
98
public int sizeElementProperty() {
99         return this.size(ELEMENT_PROPERTY);
100     }
101
102     // Add a new element returning its index in the list
103
public int addElementProperty(ElementProperty value)
104             throws ConfigException{
105         return addElementProperty(value, true);
106     }
107
108     // Add a new element returning its index in the list with a boolean flag
109
public int addElementProperty(ElementProperty value, boolean overwrite)
110             throws ConfigException{
111         ElementProperty old = getElementPropertyByName(value.getName());
112         if(old != null) {
113             throw new ConfigException(StringManager.getManager(ManagerProperties.class).getString("cannotAddDuplicate", "ElementProperty"));
114         }
115         return this.addValue(ELEMENT_PROPERTY, value, overwrite);
116     }
117
118     //
119
// Remove an element using its reference
120
// Returns the index the element had in the list
121
//
122
public int removeElementProperty(ElementProperty value){
123         return this.removeValue(ELEMENT_PROPERTY, value);
124     }
125
126     //
127
// Remove an element using its reference
128
// Returns the index the element had in the list
129
// with boolean overwrite
130
//
131
public int removeElementProperty(ElementProperty value, boolean overwrite)
132             throws StaleWriteConfigException{
133         return this.removeValue(ELEMENT_PROPERTY, value, overwrite);
134     }
135
136     public ElementProperty getElementPropertyByName(String JavaDoc id) {
137      if (null != id) { id = id.trim(); }
138     ElementProperty[] o = getElementProperty();
139      if (o == null) return null;
140
141      for (int i=0; i < o.length; i++) {
142          if(o[i].getAttributeValue(Common.convertName(ServerTags.NAME)).equals(id)) {
143              return o[i];
144          }
145      }
146
147         return null;
148         
149     }
150     /**
151     * Getter for SessionFileName of the Element manager-properties
152     * @return the SessionFileName of the Element manager-properties
153     */

154     public String JavaDoc getSessionFileName() {
155             return getAttributeValue(ServerTags.SESSION_FILE_NAME);
156     }
157     /**
158     * Modify the SessionFileName of the Element manager-properties
159     * @param v the new value
160     * @throws StaleWriteConfigException if overwrite is false and file changed on disk
161     */

162     public void setSessionFileName(String JavaDoc v, boolean overwrite) throws StaleWriteConfigException {
163         setAttributeValue(ServerTags.SESSION_FILE_NAME, v, overwrite);
164     }
165     /**
166     * Modify the SessionFileName of the Element manager-properties
167     * @param v the new value
168     */

169     public void setSessionFileName(String JavaDoc v) {
170         setAttributeValue(ServerTags.SESSION_FILE_NAME, v);
171     }
172     /**
173     * Getter for ReapIntervalInSeconds of the Element manager-properties
174     * @return the ReapIntervalInSeconds of the Element manager-properties
175     */

176     public String JavaDoc getReapIntervalInSeconds() {
177             return getAttributeValue(ServerTags.REAP_INTERVAL_IN_SECONDS);
178     }
179     /**
180     * Modify the ReapIntervalInSeconds of the Element manager-properties
181     * @param v the new value
182     * @throws StaleWriteConfigException if overwrite is false and file changed on disk
183     */

184     public void setReapIntervalInSeconds(String JavaDoc v, boolean overwrite) throws StaleWriteConfigException {
185         setAttributeValue(ServerTags.REAP_INTERVAL_IN_SECONDS, v, overwrite);
186     }
187     /**
188     * Modify the ReapIntervalInSeconds of the Element manager-properties
189     * @param v the new value
190     */

191     public void setReapIntervalInSeconds(String JavaDoc v) {
192         setAttributeValue(ServerTags.REAP_INTERVAL_IN_SECONDS, v);
193     }
194     /**
195     * Getter for MaxSessions of the Element manager-properties
196     * @return the MaxSessions of the Element manager-properties
197     */

198     public String JavaDoc getMaxSessions() {
199             return getAttributeValue(ServerTags.MAX_SESSIONS);
200     }
201     /**
202     * Modify the MaxSessions of the Element manager-properties
203     * @param v the new value
204     * @throws StaleWriteConfigException if overwrite is false and file changed on disk
205     */

206     public void setMaxSessions(String JavaDoc v, boolean overwrite) throws StaleWriteConfigException {
207         setAttributeValue(ServerTags.MAX_SESSIONS, v, overwrite);
208     }
209     /**
210     * Modify the MaxSessions of the Element manager-properties
211     * @param v the new value
212     */

213     public void setMaxSessions(String JavaDoc v) {
214         setAttributeValue(ServerTags.MAX_SESSIONS, v);
215     }
216     /**
217     * Getter for SessionIdGeneratorClassname of the Element manager-properties
218     * @return the SessionIdGeneratorClassname of the Element manager-properties
219     */

220     public String JavaDoc getSessionIdGeneratorClassname() {
221             return getAttributeValue(ServerTags.SESSION_ID_GENERATOR_CLASSNAME);
222     }
223     /**
224     * Modify the SessionIdGeneratorClassname of the Element manager-properties
225     * @param v the new value
226     * @throws StaleWriteConfigException if overwrite is false and file changed on disk
227     */

228     public void setSessionIdGeneratorClassname(String JavaDoc v, boolean overwrite) throws StaleWriteConfigException {
229         setAttributeValue(ServerTags.SESSION_ID_GENERATOR_CLASSNAME, v, overwrite);
230     }
231     /**
232     * Modify the SessionIdGeneratorClassname of the Element manager-properties
233     * @param v the new value
234     */

235     public void setSessionIdGeneratorClassname(String JavaDoc v) {
236         setAttributeValue(ServerTags.SESSION_ID_GENERATOR_CLASSNAME, v);
237     }
238     /**
239      * Create a new bean using it's default constructor.
240      * This does not add it to any bean graph.
241      */

242     public ElementProperty newElementProperty() {
243         return new ElementProperty();
244     }
245
246     /**
247     * get the xpath representation for this element
248     * returns something like abc[@name='value'] or abc
249     * depending on the type of the bean
250     */

251     protected String JavaDoc getRelativeXPath() {
252         String JavaDoc ret = null;
253         ret = "manager-properties";
254         return (null != ret ? ret.trim() : null);
255     }
256
257     /*
258     * generic method to get default value from dtd
259     */

260     public static String JavaDoc getDefaultAttributeValue(String JavaDoc attr) {
261         if(attr == null) return null;
262         attr = attr.trim();
263     return null;
264     }
265     //
266
public static void addComparator(org.netbeans.modules.schema2beans.BeanComparator c) {
267         comparators.add(c);
268     }
269
270     //
271
public static void removeComparator(org.netbeans.modules.schema2beans.BeanComparator c) {
272         comparators.remove(c);
273     }
274     public void validate() throws org.netbeans.modules.schema2beans.ValidateException {
275     }
276
277     // Dump the content of this bean returning it as a String
278
public void dump(StringBuffer JavaDoc str, String JavaDoc indent){
279         String JavaDoc s;
280         Object JavaDoc o;
281         org.netbeans.modules.schema2beans.BaseBean n;
282         str.append(indent);
283         str.append("ElementProperty["+this.sizeElementProperty()+"]"); // NOI18N
284
for(int i=0; i<this.sizeElementProperty(); i++)
285         {
286             str.append(indent+"\t");
287             str.append("#"+i+":");
288             n = (org.netbeans.modules.schema2beans.BaseBean) this.getElementProperty(i);
289             if (n != null)
290                 n.dump(str, indent + "\t"); // NOI18N
291
else
292                 str.append(indent+"\tnull"); // NOI18N
293
this.dumpAttributes(ELEMENT_PROPERTY, i, str, indent);
294         }
295
296     }
297     public String JavaDoc dumpBeanNode(){
298         StringBuffer JavaDoc str = new StringBuffer JavaDoc();
299         str.append("ManagerProperties\n"); // NOI18N
300
this.dump(str, "\n "); // NOI18N
301
return str.toString();
302     }}
303
304 // END_NOI18N
305

306
Popular Tags