KickJava   Java API By Example, From Geeks To Geeks.

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


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 PersistenceManagerFactoryResource matches the DTD element persistence-manager-factory-resource
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 PersistenceManagerFactoryResource 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 DESCRIPTION = "Description";
50     static public final String JavaDoc ELEMENT_PROPERTY = "ElementProperty";
51
52     public PersistenceManagerFactoryResource() {
53         this(Common.USE_DEFAULT_VALUES);
54     }
55
56     public PersistenceManagerFactoryResource(int options)
57     {
58         super(comparators, runtimeVersion);
59         // Properties (see root bean comments for the bean graph)
60
initPropertyTables(2);
61         this.createProperty("description", DESCRIPTION,
62             Common.TYPE_0_1 | Common.TYPE_STRING | Common.TYPE_KEY,
63             String JavaDoc.class);
64         this.createProperty("property", ELEMENT_PROPERTY,
65             Common.TYPE_0_N | Common.TYPE_BEAN | Common.TYPE_KEY,
66             ElementProperty.class);
67         this.createAttribute(ELEMENT_PROPERTY, "name", "Name",
68                         AttrProp.CDATA | AttrProp.REQUIRED,
69                         null, null);
70         this.createAttribute(ELEMENT_PROPERTY, "value", "Value",
71                         AttrProp.CDATA | AttrProp.REQUIRED,
72                         null, null);
73         this.initialize(options);
74     }
75
76     // Setting the default values of the properties
77
void initialize(int options) {
78
79     }
80
81     /**
82     * Return the Description of the Element persistence-manager-factory-resource
83     */

84     public String JavaDoc getDescription() {
85         return (String JavaDoc) getValue(ServerTags.DESCRIPTION);
86     }
87     /**
88     * Modify the Description of the Element persistence-manager-factory-resource
89     * @param v the new value
90     */

91     public void setDescription(String JavaDoc v){
92         setValue(ServerTags.DESCRIPTION, (null != v ? v.trim() : null));
93         }
94     // This attribute is an array, possibly empty
95
public void setElementProperty(int index, ElementProperty value) {
96         this.setValue(ELEMENT_PROPERTY, index, value);
97     }
98
99     // Get Method
100
public ElementProperty getElementProperty(int index) {
101         return (ElementProperty)this.getValue(ELEMENT_PROPERTY, index);
102     }
103
104     // This attribute is an array, possibly empty
105
public void setElementProperty(ElementProperty[] value) {
106         this.setValue(ELEMENT_PROPERTY, value);
107     }
108
109     // Getter Method
110
public ElementProperty[] getElementProperty() {
111         return (ElementProperty[])this.getValues(ELEMENT_PROPERTY);
112     }
113
114     // Return the number of properties
115
public int sizeElementProperty() {
116         return this.size(ELEMENT_PROPERTY);
117     }
118
119     // Add a new element returning its index in the list
120
public int addElementProperty(ElementProperty value)
121             throws ConfigException{
122         return addElementProperty(value, true);
123     }
124
125     // Add a new element returning its index in the list with a boolean flag
126
public int addElementProperty(ElementProperty value, boolean overwrite)
127             throws ConfigException{
128         ElementProperty old = getElementPropertyByName(value.getName());
129         if(old != null) {
130             throw new ConfigException(StringManager.getManager(PersistenceManagerFactoryResource.class).getString("cannotAddDuplicate", "ElementProperty"));
131         }
132         return this.addValue(ELEMENT_PROPERTY, value, overwrite);
133     }
134
135     //
136
// Remove an element using its reference
137
// Returns the index the element had in the list
138
//
139
public int removeElementProperty(ElementProperty value){
140         return this.removeValue(ELEMENT_PROPERTY, value);
141     }
142
143     //
144
// Remove an element using its reference
145
// Returns the index the element had in the list
146
// with boolean overwrite
147
//
148
public int removeElementProperty(ElementProperty value, boolean overwrite)
149             throws StaleWriteConfigException{
150         return this.removeValue(ELEMENT_PROPERTY, value, overwrite);
151     }
152
153     public ElementProperty getElementPropertyByName(String JavaDoc id) {
154      if (null != id) { id = id.trim(); }
155     ElementProperty[] o = getElementProperty();
156      if (o == null) return null;
157
158      for (int i=0; i < o.length; i++) {
159          if(o[i].getAttributeValue(Common.convertName(ServerTags.NAME)).equals(id)) {
160              return o[i];
161          }
162      }
163
164         return null;
165         
166     }
167     /**
168     * Getter for JndiName of the Element persistence-manager-factory-resource
169     * @return the JndiName of the Element persistence-manager-factory-resource
170     */

171     public String JavaDoc getJndiName() {
172         return getAttributeValue(ServerTags.JNDI_NAME);
173     }
174     /**
175     * Modify the JndiName of the Element persistence-manager-factory-resource
176     * @param v the new value
177     * @throws StaleWriteConfigException if overwrite is false and file changed on disk
178     */

179     public void setJndiName(String JavaDoc v, boolean overwrite) throws StaleWriteConfigException {
180         setAttributeValue(ServerTags.JNDI_NAME, v, overwrite);
181     }
182     /**
183     * Modify the JndiName of the Element persistence-manager-factory-resource
184     * @param v the new value
185     */

186     public void setJndiName(String JavaDoc v) {
187         setAttributeValue(ServerTags.JNDI_NAME, v);
188     }
189     /**
190     * Getter for FactoryClass of the Element persistence-manager-factory-resource
191     * @return the FactoryClass of the Element persistence-manager-factory-resource
192     */

193     public String JavaDoc getFactoryClass() {
194         return getAttributeValue(ServerTags.FACTORY_CLASS);
195     }
196     /**
197     * Modify the FactoryClass of the Element persistence-manager-factory-resource
198     * @param v the new value
199     * @throws StaleWriteConfigException if overwrite is false and file changed on disk
200     */

201     public void setFactoryClass(String JavaDoc v, boolean overwrite) throws StaleWriteConfigException {
202         setAttributeValue(ServerTags.FACTORY_CLASS, v, overwrite);
203     }
204     /**
205     * Modify the FactoryClass of the Element persistence-manager-factory-resource
206     * @param v the new value
207     */

208     public void setFactoryClass(String JavaDoc v) {
209         setAttributeValue(ServerTags.FACTORY_CLASS, v);
210     }
211     /**
212     * Get the default value of FactoryClass from dtd
213     */

214     public static String JavaDoc getDefaultFactoryClass() {
215         return "com.sun.jdo.spi.persistence.support.sqlstore.impl.PersistenceManagerFactoryImpl".trim();
216     }
217     /**
218     * Getter for JdbcResourceJndiName of the Element persistence-manager-factory-resource
219     * @return the JdbcResourceJndiName of the Element persistence-manager-factory-resource
220     */

221     public String JavaDoc getJdbcResourceJndiName() {
222             return getAttributeValue(ServerTags.JDBC_RESOURCE_JNDI_NAME);
223     }
224     /**
225     * Modify the JdbcResourceJndiName of the Element persistence-manager-factory-resource
226     * @param v the new value
227     * @throws StaleWriteConfigException if overwrite is false and file changed on disk
228     */

229     public void setJdbcResourceJndiName(String JavaDoc v, boolean overwrite) throws StaleWriteConfigException {
230         setAttributeValue(ServerTags.JDBC_RESOURCE_JNDI_NAME, v, overwrite);
231     }
232     /**
233     * Modify the JdbcResourceJndiName of the Element persistence-manager-factory-resource
234     * @param v the new value
235     */

236     public void setJdbcResourceJndiName(String JavaDoc v) {
237         setAttributeValue(ServerTags.JDBC_RESOURCE_JNDI_NAME, v);
238     }
239     /**
240     * Getter for ObjectType of the Element persistence-manager-factory-resource
241     * @return the ObjectType of the Element persistence-manager-factory-resource
242     */

243     public String JavaDoc getObjectType() {
244         return getAttributeValue(ServerTags.OBJECT_TYPE);
245     }
246     /**
247     * Modify the ObjectType of the Element persistence-manager-factory-resource
248     * @param v the new value
249     * @throws StaleWriteConfigException if overwrite is false and file changed on disk
250     */

251     public void setObjectType(String JavaDoc v, boolean overwrite) throws StaleWriteConfigException {
252         setAttributeValue(ServerTags.OBJECT_TYPE, v, overwrite);
253     }
254     /**
255     * Modify the ObjectType of the Element persistence-manager-factory-resource
256     * @param v the new value
257     */

258     public void setObjectType(String JavaDoc v) {
259         setAttributeValue(ServerTags.OBJECT_TYPE, v);
260     }
261     /**
262     * Get the default value of ObjectType from dtd
263     */

264     public static String JavaDoc getDefaultObjectType() {
265         return "user".trim();
266     }
267     /**
268     * Getter for Enabled of the Element persistence-manager-factory-resource
269     * @return the Enabled of the Element persistence-manager-factory-resource
270     */

271     public boolean isEnabled() {
272         return toBoolean(getAttributeValue(ServerTags.ENABLED));
273     }
274     /**
275     * Modify the Enabled of the Element persistence-manager-factory-resource
276     * @param v the new value
277     * @throws StaleWriteConfigException if overwrite is false and file changed on disk
278     */

279     public void setEnabled(boolean v, boolean overwrite) throws StaleWriteConfigException {
280         setAttributeValue(ServerTags.ENABLED, ""+(v==true), overwrite);
281     }
282     /**
283     * Modify the Enabled of the Element persistence-manager-factory-resource
284     * @param v the new value
285     */

286     public void setEnabled(boolean v) {
287         setAttributeValue(ServerTags.ENABLED, ""+(v==true));
288     }
289     /**
290     * Get the default value of Enabled from dtd
291     */

292     public static String JavaDoc getDefaultEnabled() {
293         return "true".trim();
294     }
295     /**
296      * Create a new bean using it's default constructor.
297      * This does not add it to any bean graph.
298      */

299     public ElementProperty newElementProperty() {
300         return new ElementProperty();
301     }
302
303     /**
304     * get the xpath representation for this element
305     * returns something like abc[@name='value'] or abc
306     * depending on the type of the bean
307     */

308     protected String JavaDoc getRelativeXPath() {
309         String JavaDoc ret = null;
310         ret = "persistence-manager-factory-resource" + (canHaveSiblings() ? "[@jndi-name='" + getAttributeValue("jndi-name") +"']" : "") ;
311         return (null != ret ? ret.trim() : null);
312     }
313
314     /*
315     * generic method to get default value from dtd
316     */

317     public static String JavaDoc getDefaultAttributeValue(String JavaDoc attr) {
318         if(attr == null) return null;
319         attr = attr.trim();
320         if(attr.equals(ServerTags.FACTORY_CLASS)) return "com.sun.jdo.spi.persistence.support.sqlstore.impl.PersistenceManagerFactoryImpl".trim();
321         if(attr.equals(ServerTags.OBJECT_TYPE)) return "user".trim();
322         if(attr.equals(ServerTags.ENABLED)) return "true".trim();
323     return null;
324     }
325     //
326
public static void addComparator(org.netbeans.modules.schema2beans.BeanComparator c) {
327         comparators.add(c);
328     }
329
330     //
331
public static void removeComparator(org.netbeans.modules.schema2beans.BeanComparator c) {
332         comparators.remove(c);
333     }
334     public void validate() throws org.netbeans.modules.schema2beans.ValidateException {
335     }
336
337     // Dump the content of this bean returning it as a String
338
public void dump(StringBuffer JavaDoc str, String JavaDoc indent){
339         String JavaDoc s;
340         Object JavaDoc o;
341         org.netbeans.modules.schema2beans.BaseBean n;
342         str.append(indent);
343         str.append("Description"); // NOI18N
344
str.append(indent+"\t"); // NOI18N
345
str.append("<"); // NOI18N
346
o = this.getDescription();
347         str.append((o==null?"null":o.toString().trim())); // NOI18N
348
str.append(">\n"); // NOI18N
349
this.dumpAttributes(DESCRIPTION, 0, str, indent);
350
351         str.append(indent);
352         str.append("ElementProperty["+this.sizeElementProperty()+"]"); // NOI18N
353
for(int i=0; i<this.sizeElementProperty(); i++)
354         {
355             str.append(indent+"\t");
356             str.append("#"+i+":");
357             n = (org.netbeans.modules.schema2beans.BaseBean) this.getElementProperty(i);
358             if (n != null)
359                 n.dump(str, indent + "\t"); // NOI18N
360
else
361                 str.append(indent+"\tnull"); // NOI18N
362
this.dumpAttributes(ELEMENT_PROPERTY, i, str, indent);
363         }
364
365     }
366     public String JavaDoc dumpBeanNode(){
367         StringBuffer JavaDoc str = new StringBuffer JavaDoc();
368         str.append("PersistenceManagerFactoryResource\n"); // NOI18N
369
this.dump(str, "\n "); // NOI18N
370
return str.toString();
371     }}
372
373 // END_NOI18N
374

375
Popular Tags