1 23 24 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 ; 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 43 public class EjbContainerAvailability extends ConfigBean implements Serializable 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 ELEMENT_PROPERTY = "ElementProperty"; 50 51 public EjbContainerAvailability() { 52 this(Common.USE_DEFAULT_VALUES); 53 } 54 55 public EjbContainerAvailability(int options) 56 { 57 super(comparators, runtimeVersion); 58 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 void initialize(int options) { 74 75 } 76 77 public void setElementProperty(int index, ElementProperty value) { 79 this.setValue(ELEMENT_PROPERTY, index, value); 80 } 81 82 public ElementProperty getElementProperty(int index) { 84 return (ElementProperty)this.getValue(ELEMENT_PROPERTY, index); 85 } 86 87 public void setElementProperty(ElementProperty[] value) { 89 this.setValue(ELEMENT_PROPERTY, value); 90 } 91 92 public ElementProperty[] getElementProperty() { 94 return (ElementProperty[])this.getValues(ELEMENT_PROPERTY); 95 } 96 97 public int sizeElementProperty() { 99 return this.size(ELEMENT_PROPERTY); 100 } 101 102 public int addElementProperty(ElementProperty value) 104 throws ConfigException{ 105 return addElementProperty(value, true); 106 } 107 108 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(EjbContainerAvailability.class).getString("cannotAddDuplicate", "ElementProperty")); 114 } 115 return this.addValue(ELEMENT_PROPERTY, value, overwrite); 116 } 117 118 public int removeElementProperty(ElementProperty value){ 123 return this.removeValue(ELEMENT_PROPERTY, value); 124 } 125 126 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 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 154 public String getAvailabilityEnabled() { 155 return getAttributeValue(ServerTags.AVAILABILITY_ENABLED); 156 } 157 162 public void setAvailabilityEnabled(String v, boolean overwrite) throws StaleWriteConfigException { 163 setAttributeValue(ServerTags.AVAILABILITY_ENABLED, v, overwrite); 164 } 165 169 public void setAvailabilityEnabled(String v) { 170 setAttributeValue(ServerTags.AVAILABILITY_ENABLED, v); 171 } 172 176 public String getSfsbHaPersistenceType() { 177 return getAttributeValue(ServerTags.SFSB_HA_PERSISTENCE_TYPE); 178 } 179 184 public void setSfsbHaPersistenceType(String v, boolean overwrite) throws StaleWriteConfigException { 185 setAttributeValue(ServerTags.SFSB_HA_PERSISTENCE_TYPE, v, overwrite); 186 } 187 191 public void setSfsbHaPersistenceType(String v) { 192 setAttributeValue(ServerTags.SFSB_HA_PERSISTENCE_TYPE, v); 193 } 194 197 public static String getDefaultSfsbHaPersistenceType() { 198 return "ha".trim(); 199 } 200 204 public String getSfsbPersistenceType() { 205 return getAttributeValue(ServerTags.SFSB_PERSISTENCE_TYPE); 206 } 207 212 public void setSfsbPersistenceType(String v, boolean overwrite) throws StaleWriteConfigException { 213 setAttributeValue(ServerTags.SFSB_PERSISTENCE_TYPE, v, overwrite); 214 } 215 219 public void setSfsbPersistenceType(String v) { 220 setAttributeValue(ServerTags.SFSB_PERSISTENCE_TYPE, v); 221 } 222 225 public static String getDefaultSfsbPersistenceType() { 226 return "file".trim(); 227 } 228 232 public String getSfsbCheckpointEnabled() { 233 return getAttributeValue(ServerTags.SFSB_CHECKPOINT_ENABLED); 234 } 235 240 public void setSfsbCheckpointEnabled(String v, boolean overwrite) throws StaleWriteConfigException { 241 setAttributeValue(ServerTags.SFSB_CHECKPOINT_ENABLED, v, overwrite); 242 } 243 247 public void setSfsbCheckpointEnabled(String v) { 248 setAttributeValue(ServerTags.SFSB_CHECKPOINT_ENABLED, v); 249 } 250 254 public String getSfsbQuickCheckpointEnabled() { 255 return getAttributeValue(ServerTags.SFSB_QUICK_CHECKPOINT_ENABLED); 256 } 257 262 public void setSfsbQuickCheckpointEnabled(String v, boolean overwrite) throws StaleWriteConfigException { 263 setAttributeValue(ServerTags.SFSB_QUICK_CHECKPOINT_ENABLED, v, overwrite); 264 } 265 269 public void setSfsbQuickCheckpointEnabled(String v) { 270 setAttributeValue(ServerTags.SFSB_QUICK_CHECKPOINT_ENABLED, v); 271 } 272 276 public String getSfsbStorePoolName() { 277 return getAttributeValue(ServerTags.SFSB_STORE_POOL_NAME); 278 } 279 284 public void setSfsbStorePoolName(String v, boolean overwrite) throws StaleWriteConfigException { 285 setAttributeValue(ServerTags.SFSB_STORE_POOL_NAME, v, overwrite); 286 } 287 291 public void setSfsbStorePoolName(String v) { 292 setAttributeValue(ServerTags.SFSB_STORE_POOL_NAME, v); 293 } 294 298 public ElementProperty newElementProperty() { 299 return new ElementProperty(); 300 } 301 302 307 protected String getRelativeXPath() { 308 String ret = null; 309 ret = "ejb-container-availability"; 310 return (null != ret ? ret.trim() : null); 311 } 312 313 316 public static String getDefaultAttributeValue(String attr) { 317 if(attr == null) return null; 318 attr = attr.trim(); 319 if(attr.equals(ServerTags.SFSB_HA_PERSISTENCE_TYPE)) return "ha".trim(); 320 if(attr.equals(ServerTags.SFSB_PERSISTENCE_TYPE)) return "file".trim(); 321 return null; 322 } 323 public static void addComparator(org.netbeans.modules.schema2beans.BeanComparator c) { 325 comparators.add(c); 326 } 327 328 public static void removeComparator(org.netbeans.modules.schema2beans.BeanComparator c) { 330 comparators.remove(c); 331 } 332 public void validate() throws org.netbeans.modules.schema2beans.ValidateException { 333 } 334 335 public void dump(StringBuffer str, String indent){ 337 String s; 338 Object o; 339 org.netbeans.modules.schema2beans.BaseBean n; 340 str.append(indent); 341 str.append("ElementProperty["+this.sizeElementProperty()+"]"); for(int i=0; i<this.sizeElementProperty(); i++) 343 { 344 str.append(indent+"\t"); 345 str.append("#"+i+":"); 346 n = (org.netbeans.modules.schema2beans.BaseBean) this.getElementProperty(i); 347 if (n != null) 348 n.dump(str, indent + "\t"); else 350 str.append(indent+"\tnull"); this.dumpAttributes(ELEMENT_PROPERTY, i, str, indent); 352 } 353 354 } 355 public String dumpBeanNode(){ 356 StringBuffer str = new StringBuffer (); 357 str.append("EjbContainerAvailability\n"); this.dump(str, "\n "); return str.toString(); 360 }} 361 362 364 | Popular Tags |