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 ResourceRef 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 50 public ResourceRef() { 51 this(Common.USE_DEFAULT_VALUES); 52 } 53 54 public ResourceRef(int options) 55 { 56 super(comparators, runtimeVersion); 57 initPropertyTables(0); 59 this.initialize(options); 60 } 61 62 void initialize(int options) { 64 65 } 66 67 71 public boolean isEnabled() { 72 return toBoolean(getAttributeValue(ServerTags.ENABLED)); 73 } 74 79 public void setEnabled(boolean v, boolean overwrite) throws StaleWriteConfigException { 80 setAttributeValue(ServerTags.ENABLED, ""+(v==true), overwrite); 81 } 82 86 public void setEnabled(boolean v) { 87 setAttributeValue(ServerTags.ENABLED, ""+(v==true)); 88 } 89 92 public static String getDefaultEnabled() { 93 return "true".trim(); 94 } 95 99 public String getRef() { 100 return getAttributeValue(ServerTags.REF); 101 } 102 107 public void setRef(String v, boolean overwrite) throws StaleWriteConfigException { 108 setAttributeValue(ServerTags.REF, v, overwrite); 109 } 110 114 public void setRef(String v) { 115 setAttributeValue(ServerTags.REF, v); 116 } 117 122 protected String getRelativeXPath() { 123 String ret = null; 124 ret = "resource-ref" + (canHaveSiblings() ? "[@ref='" + getAttributeValue("ref") +"']" : "") ; 125 return (null != ret ? ret.trim() : null); 126 } 127 128 131 public static String getDefaultAttributeValue(String attr) { 132 if(attr == null) return null; 133 attr = attr.trim(); 134 if(attr.equals(ServerTags.ENABLED)) return "true".trim(); 135 return null; 136 } 137 public static void addComparator(org.netbeans.modules.schema2beans.BeanComparator c) { 139 comparators.add(c); 140 } 141 142 public static void removeComparator(org.netbeans.modules.schema2beans.BeanComparator c) { 144 comparators.remove(c); 145 } 146 public void validate() throws org.netbeans.modules.schema2beans.ValidateException { 147 } 148 149 public void dump(StringBuffer str, String indent){ 151 String s; 152 Object o; 153 org.netbeans.modules.schema2beans.BaseBean n; 154 } 155 public String dumpBeanNode(){ 156 StringBuffer str = new StringBuffer (); 157 str.append("ResourceRef\n"); this.dump(str, "\n "); return str.toString(); 160 }} 161 162 164 | Popular Tags |