KickJava   Java API By Example, From Geeks To Geeks.

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


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 WebContainerAvailability matches the DTD element web-container-availability
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 WebContainerAvailability 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 WebContainerAvailability() {
52         this(Common.USE_DEFAULT_VALUES);
53     }
54
55     public WebContainerAvailability(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(WebContainerAvailability.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 AvailabilityEnabled of the Element web-container-availability
152     * @return the AvailabilityEnabled of the Element web-container-availability
153     */

154     public String JavaDoc getAvailabilityEnabled() {
155             return getAttributeValue(ServerTags.AVAILABILITY_ENABLED);
156     }
157     /**
158     * Modify the AvailabilityEnabled of the Element web-container-availability
159     * @param v the new value
160     * @throws StaleWriteConfigException if overwrite is false and file changed on disk
161     */

162     public void setAvailabilityEnabled(String JavaDoc v, boolean overwrite) throws StaleWriteConfigException {
163         setAttributeValue(ServerTags.AVAILABILITY_ENABLED, v, overwrite);
164     }
165     /**
166     * Modify the AvailabilityEnabled of the Element web-container-availability
167     * @param v the new value
168     */

169     public void setAvailabilityEnabled(String JavaDoc v) {
170         setAttributeValue(ServerTags.AVAILABILITY_ENABLED, v);
171     }
172     /**
173     * Getter for PersistenceType of the Element web-container-availability
174     * @return the PersistenceType of the Element web-container-availability
175     */

176     public String JavaDoc getPersistenceType() {
177         return getAttributeValue(ServerTags.PERSISTENCE_TYPE);
178     }
179     /**
180     * Modify the PersistenceType of the Element web-container-availability
181     * @param v the new value
182     * @throws StaleWriteConfigException if overwrite is false and file changed on disk
183     */

184     public void setPersistenceType(String JavaDoc v, boolean overwrite) throws StaleWriteConfigException {
185         setAttributeValue(ServerTags.PERSISTENCE_TYPE, v, overwrite);
186     }
187     /**
188     * Modify the PersistenceType of the Element web-container-availability
189     * @param v the new value
190     */

191     public void setPersistenceType(String JavaDoc v) {
192         setAttributeValue(ServerTags.PERSISTENCE_TYPE, v);
193     }
194     /**
195     * Get the default value of PersistenceType from dtd
196     */

197     public static String JavaDoc getDefaultPersistenceType() {
198         return "memory".trim();
199     }
200     /**
201     * Getter for PersistenceFrequency of the Element web-container-availability
202     * @return the PersistenceFrequency of the Element web-container-availability
203     */

204     public String JavaDoc getPersistenceFrequency() {
205             return getAttributeValue(ServerTags.PERSISTENCE_FREQUENCY);
206     }
207     /**
208     * Modify the PersistenceFrequency of the Element web-container-availability
209     * @param v the new value
210     * @throws StaleWriteConfigException if overwrite is false and file changed on disk
211     */

212     public void setPersistenceFrequency(String JavaDoc v, boolean overwrite) throws StaleWriteConfigException {
213         setAttributeValue(ServerTags.PERSISTENCE_FREQUENCY, v, overwrite);
214     }
215     /**
216     * Modify the PersistenceFrequency of the Element web-container-availability
217     * @param v the new value
218     */

219     public void setPersistenceFrequency(String JavaDoc v) {
220         setAttributeValue(ServerTags.PERSISTENCE_FREQUENCY, v);
221     }
222     /**
223     * Getter for PersistenceScope of the Element web-container-availability
224     * @return the PersistenceScope of the Element web-container-availability
225     */

226     public String JavaDoc getPersistenceScope() {
227             return getAttributeValue(ServerTags.PERSISTENCE_SCOPE);
228     }
229     /**
230     * Modify the PersistenceScope of the Element web-container-availability
231     * @param v the new value
232     * @throws StaleWriteConfigException if overwrite is false and file changed on disk
233     */

234     public void setPersistenceScope(String JavaDoc v, boolean overwrite) throws StaleWriteConfigException {
235         setAttributeValue(ServerTags.PERSISTENCE_SCOPE, v, overwrite);
236     }
237     /**
238     * Modify the PersistenceScope of the Element web-container-availability
239     * @param v the new value
240     */

241     public void setPersistenceScope(String JavaDoc v) {
242         setAttributeValue(ServerTags.PERSISTENCE_SCOPE, v);
243     }
244     /**
245     * Getter for PersistenceStoreHealthCheckEnabled of the Element web-container-availability
246     * @return the PersistenceStoreHealthCheckEnabled of the Element web-container-availability
247     */

248     public boolean isPersistenceStoreHealthCheckEnabled() {
249         return toBoolean(getAttributeValue(ServerTags.PERSISTENCE_STORE_HEALTH_CHECK_ENABLED));
250     }
251     /**
252     * Modify the PersistenceStoreHealthCheckEnabled of the Element web-container-availability
253     * @param v the new value
254     * @throws StaleWriteConfigException if overwrite is false and file changed on disk
255     */

256     public void setPersistenceStoreHealthCheckEnabled(boolean v, boolean overwrite) throws StaleWriteConfigException {
257         setAttributeValue(ServerTags.PERSISTENCE_STORE_HEALTH_CHECK_ENABLED, ""+(v==true), overwrite);
258     }
259     /**
260     * Modify the PersistenceStoreHealthCheckEnabled of the Element web-container-availability
261     * @param v the new value
262     */

263     public void setPersistenceStoreHealthCheckEnabled(boolean v) {
264         setAttributeValue(ServerTags.PERSISTENCE_STORE_HEALTH_CHECK_ENABLED, ""+(v==true));
265     }
266     /**
267     * Get the default value of PersistenceStoreHealthCheckEnabled from dtd
268     */

269     public static String JavaDoc getDefaultPersistenceStoreHealthCheckEnabled() {
270         return "false".trim();
271     }
272     /**
273     * Getter for SsoFailoverEnabled of the Element web-container-availability
274     * @return the SsoFailoverEnabled of the Element web-container-availability
275     */

276     public boolean isSsoFailoverEnabled() {
277         return toBoolean(getAttributeValue(ServerTags.SSO_FAILOVER_ENABLED));
278     }
279     /**
280     * Modify the SsoFailoverEnabled of the Element web-container-availability
281     * @param v the new value
282     * @throws StaleWriteConfigException if overwrite is false and file changed on disk
283     */

284     public void setSsoFailoverEnabled(boolean v, boolean overwrite) throws StaleWriteConfigException {
285         setAttributeValue(ServerTags.SSO_FAILOVER_ENABLED, ""+(v==true), overwrite);
286     }
287     /**
288     * Modify the SsoFailoverEnabled of the Element web-container-availability
289     * @param v the new value
290     */

291     public void setSsoFailoverEnabled(boolean v) {
292         setAttributeValue(ServerTags.SSO_FAILOVER_ENABLED, ""+(v==true));
293     }
294     /**
295     * Get the default value of SsoFailoverEnabled from dtd
296     */

297     public static String JavaDoc getDefaultSsoFailoverEnabled() {
298         return "false".trim();
299     }
300     /**
301     * Getter for HttpSessionStorePoolName of the Element web-container-availability
302     * @return the HttpSessionStorePoolName of the Element web-container-availability
303     */

304     public String JavaDoc getHttpSessionStorePoolName() {
305             return getAttributeValue(ServerTags.HTTP_SESSION_STORE_POOL_NAME);
306     }
307     /**
308     * Modify the HttpSessionStorePoolName of the Element web-container-availability
309     * @param v the new value
310     * @throws StaleWriteConfigException if overwrite is false and file changed on disk
311     */

312     public void setHttpSessionStorePoolName(String JavaDoc v, boolean overwrite) throws StaleWriteConfigException {
313         setAttributeValue(ServerTags.HTTP_SESSION_STORE_POOL_NAME, v, overwrite);
314     }
315     /**
316     * Modify the HttpSessionStorePoolName of the Element web-container-availability
317     * @param v the new value
318     */

319     public void setHttpSessionStorePoolName(String JavaDoc v) {
320         setAttributeValue(ServerTags.HTTP_SESSION_STORE_POOL_NAME, v);
321     }
322     /**
323      * Create a new bean using it's default constructor.
324      * This does not add it to any bean graph.
325      */

326     public ElementProperty newElementProperty() {
327         return new ElementProperty();
328     }
329
330     /**
331     * get the xpath representation for this element
332     * returns something like abc[@name='value'] or abc
333     * depending on the type of the bean
334     */

335     protected String JavaDoc getRelativeXPath() {
336         String JavaDoc ret = null;
337         ret = "web-container-availability";
338         return (null != ret ? ret.trim() : null);
339     }
340
341     /*
342     * generic method to get default value from dtd
343     */

344     public static String JavaDoc getDefaultAttributeValue(String JavaDoc attr) {
345         if(attr == null) return null;
346         attr = attr.trim();
347         if(attr.equals(ServerTags.PERSISTENCE_TYPE)) return "memory".trim();
348         if(attr.equals(ServerTags.PERSISTENCE_STORE_HEALTH_CHECK_ENABLED)) return "false".trim();
349         if(attr.equals(ServerTags.SSO_FAILOVER_ENABLED)) return "false".trim();
350     return null;
351     }
352     //
353
public static void addComparator(org.netbeans.modules.schema2beans.BeanComparator c) {
354         comparators.add(c);
355     }
356
357     //
358
public static void removeComparator(org.netbeans.modules.schema2beans.BeanComparator c) {
359         comparators.remove(c);
360     }
361     public void validate() throws org.netbeans.modules.schema2beans.ValidateException {
362     }
363
364     // Dump the content of this bean returning it as a String
365
public void dump(StringBuffer JavaDoc str, String JavaDoc indent){
366         String JavaDoc s;
367         Object JavaDoc o;
368         org.netbeans.modules.schema2beans.BaseBean n;
369         str.append(indent);
370         str.append("ElementProperty["+this.sizeElementProperty()+"]"); // NOI18N
371
for(int i=0; i<this.sizeElementProperty(); i++)
372         {
373             str.append(indent+"\t");
374             str.append("#"+i+":");
375             n = (org.netbeans.modules.schema2beans.BaseBean) this.getElementProperty(i);
376             if (n != null)
377                 n.dump(str, indent + "\t"); // NOI18N
378
else
379                 str.append(indent+"\tnull"); // NOI18N
380
this.dumpAttributes(ELEMENT_PROPERTY, i, str, indent);
381         }
382
383     }
384     public String JavaDoc dumpBeanNode(){
385         StringBuffer JavaDoc str = new StringBuffer JavaDoc();
386         str.append("WebContainerAvailability\n"); // NOI18N
387
this.dump(str, "\n "); // NOI18N
388
return str.toString();
389     }}
390
391 // END_NOI18N
392

393
Popular Tags