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 EjbTimerService 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 EjbTimerService() { 52 this(Common.USE_DEFAULT_VALUES); 53 } 54 55 public EjbTimerService(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(EjbTimerService.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 getMinimumDeliveryIntervalInMillis() { 155 return getAttributeValue(ServerTags.MINIMUM_DELIVERY_INTERVAL_IN_MILLIS); 156 } 157 162 public void setMinimumDeliveryIntervalInMillis(String v, boolean overwrite) throws StaleWriteConfigException { 163 setAttributeValue(ServerTags.MINIMUM_DELIVERY_INTERVAL_IN_MILLIS, v, overwrite); 164 } 165 169 public void setMinimumDeliveryIntervalInMillis(String v) { 170 setAttributeValue(ServerTags.MINIMUM_DELIVERY_INTERVAL_IN_MILLIS, v); 171 } 172 175 public static String getDefaultMinimumDeliveryIntervalInMillis() { 176 return "7000".trim(); 177 } 178 182 public String getMaxRedeliveries() { 183 return getAttributeValue(ServerTags.MAX_REDELIVERIES); 184 } 185 190 public void setMaxRedeliveries(String v, boolean overwrite) throws StaleWriteConfigException { 191 setAttributeValue(ServerTags.MAX_REDELIVERIES, v, overwrite); 192 } 193 197 public void setMaxRedeliveries(String v) { 198 setAttributeValue(ServerTags.MAX_REDELIVERIES, v); 199 } 200 203 public static String getDefaultMaxRedeliveries() { 204 return "1".trim(); 205 } 206 210 public String getTimerDatasource() { 211 return getAttributeValue(ServerTags.TIMER_DATASOURCE); 212 } 213 218 public void setTimerDatasource(String v, boolean overwrite) throws StaleWriteConfigException { 219 setAttributeValue(ServerTags.TIMER_DATASOURCE, v, overwrite); 220 } 221 225 public void setTimerDatasource(String v) { 226 setAttributeValue(ServerTags.TIMER_DATASOURCE, v); 227 } 228 232 public String getRedeliveryIntervalInternalInMillis() { 233 return getAttributeValue(ServerTags.REDELIVERY_INTERVAL_INTERNAL_IN_MILLIS); 234 } 235 240 public void setRedeliveryIntervalInternalInMillis(String v, boolean overwrite) throws StaleWriteConfigException { 241 setAttributeValue(ServerTags.REDELIVERY_INTERVAL_INTERNAL_IN_MILLIS, v, overwrite); 242 } 243 247 public void setRedeliveryIntervalInternalInMillis(String v) { 248 setAttributeValue(ServerTags.REDELIVERY_INTERVAL_INTERNAL_IN_MILLIS, v); 249 } 250 253 public static String getDefaultRedeliveryIntervalInternalInMillis() { 254 return "5000".trim(); 255 } 256 260 public ElementProperty newElementProperty() { 261 return new ElementProperty(); 262 } 263 264 269 protected String getRelativeXPath() { 270 String ret = null; 271 ret = "ejb-timer-service"; 272 return (null != ret ? ret.trim() : null); 273 } 274 275 278 public static String getDefaultAttributeValue(String attr) { 279 if(attr == null) return null; 280 attr = attr.trim(); 281 if(attr.equals(ServerTags.MINIMUM_DELIVERY_INTERVAL_IN_MILLIS)) return "7000".trim(); 282 if(attr.equals(ServerTags.MAX_REDELIVERIES)) return "1".trim(); 283 if(attr.equals(ServerTags.REDELIVERY_INTERVAL_INTERNAL_IN_MILLIS)) return "5000".trim(); 284 return null; 285 } 286 public static void addComparator(org.netbeans.modules.schema2beans.BeanComparator c) { 288 comparators.add(c); 289 } 290 291 public static void removeComparator(org.netbeans.modules.schema2beans.BeanComparator c) { 293 comparators.remove(c); 294 } 295 public void validate() throws org.netbeans.modules.schema2beans.ValidateException { 296 } 297 298 public void dump(StringBuffer str, String indent){ 300 String s; 301 Object o; 302 org.netbeans.modules.schema2beans.BaseBean n; 303 str.append(indent); 304 str.append("ElementProperty["+this.sizeElementProperty()+"]"); for(int i=0; i<this.sizeElementProperty(); i++) 306 { 307 str.append(indent+"\t"); 308 str.append("#"+i+":"); 309 n = (org.netbeans.modules.schema2beans.BaseBean) this.getElementProperty(i); 310 if (n != null) 311 n.dump(str, indent + "\t"); else 313 str.append(indent+"\tnull"); this.dumpAttributes(ELEMENT_PROPERTY, i, str, indent); 315 } 316 317 } 318 public String dumpBeanNode(){ 319 StringBuffer str = new StringBuffer (); 320 str.append("EjbTimerService\n"); this.dump(str, "\n "); return str.toString(); 323 }} 324 325 327 | Popular Tags |