Methods Summary |
---|
public static void | addComparator(org.netbeans.modules.schema2beans.BeanComparator c)
comparators.add(c);
|
public int | addElementProperty(ElementProperty value)
return addElementProperty(value, true);
|
public int | addElementProperty(ElementProperty value, boolean overwrite)
ElementProperty old = getElementPropertyByName(value.getName());
if(old != null) {
throw new ConfigException(StringManager.getManager(TransactionService.class).getString("cannotAddDuplicate", "ElementProperty"));
}
return this.addValue(ELEMENT_PROPERTY, value, overwrite);
|
public void | dump(java.lang.StringBuffer str, java.lang.String indent)
String s;
Object o;
org.netbeans.modules.schema2beans.BaseBean n;
str.append(indent);
str.append("ElementProperty["+this.sizeElementProperty()+"]"); // NOI18N
for(int i=0; i<this.sizeElementProperty(); i++)
{
str.append(indent+"\t");
str.append("#"+i+":");
n = (org.netbeans.modules.schema2beans.BaseBean) this.getElementProperty(i);
if (n != null)
n.dump(str, indent + "\t"); // NOI18N
else
str.append(indent+"\tnull"); // NOI18N
this.dumpAttributes(ELEMENT_PROPERTY, i, str, indent);
}
|
public java.lang.String | dumpBeanNode()
StringBuffer str = new StringBuffer();
str.append("TransactionService\n"); // NOI18N
this.dump(str, "\n "); // NOI18N
return str.toString();
|
public static java.lang.String | getDefaultAttributeValue(java.lang.String attr)
if(attr == null) return null;
attr = attr.trim();
if(attr.equals(ServerTags.AUTOMATIC_RECOVERY)) return "false".trim();
if(attr.equals(ServerTags.TIMEOUT_IN_SECONDS)) return "0".trim();
if(attr.equals(ServerTags.HEURISTIC_DECISION)) return "rollback".trim();
if(attr.equals(ServerTags.RETRY_TIMEOUT_IN_SECONDS)) return "600".trim();
if(attr.equals(ServerTags.KEYPOINT_INTERVAL)) return "2048".trim();
return null;
|
public static java.lang.String | getDefaultAutomaticRecovery()Get the default value of AutomaticRecovery from dtd
return "false".trim();
|
public static java.lang.String | getDefaultHeuristicDecision()Get the default value of HeuristicDecision from dtd
return "rollback".trim();
|
public static java.lang.String | getDefaultKeypointInterval()Get the default value of KeypointInterval from dtd
return "2048".trim();
|
public static java.lang.String | getDefaultRetryTimeoutInSeconds()Get the default value of RetryTimeoutInSeconds from dtd
return "600".trim();
|
public static java.lang.String | getDefaultTimeoutInSeconds()Get the default value of TimeoutInSeconds from dtd
return "0".trim();
|
public ElementProperty | getElementProperty(int index)
return (ElementProperty)this.getValue(ELEMENT_PROPERTY, index);
|
public ElementProperty[] | getElementProperty()
return (ElementProperty[])this.getValues(ELEMENT_PROPERTY);
|
public ElementProperty | getElementPropertyByName(java.lang.String id)
if (null != id) { id = id.trim(); }
ElementProperty[] o = getElementProperty();
if (o == null) return null;
for (int i=0; i < o.length; i++) {
if(o[i].getAttributeValue(Common.convertName(ServerTags.NAME)).equals(id)) {
return o[i];
}
}
return null;
|
public java.lang.String | getHeuristicDecision()Getter for HeuristicDecision of the Element transaction-service
return getAttributeValue(ServerTags.HEURISTIC_DECISION);
|
public java.lang.String | getKeypointInterval()Getter for KeypointInterval of the Element transaction-service
return getAttributeValue(ServerTags.KEYPOINT_INTERVAL);
|
protected java.lang.String | getRelativeXPath()get the xpath representation for this element
returns something like abc[@name='value'] or abc
depending on the type of the bean
String ret = null;
ret = "transaction-service";
return (null != ret ? ret.trim() : null);
|
public java.lang.String | getRetryTimeoutInSeconds()Getter for RetryTimeoutInSeconds of the Element transaction-service
return getAttributeValue(ServerTags.RETRY_TIMEOUT_IN_SECONDS);
|
public java.lang.String | getTimeoutInSeconds()Getter for TimeoutInSeconds of the Element transaction-service
return getAttributeValue(ServerTags.TIMEOUT_IN_SECONDS);
|
public java.lang.String | getTxLogDir()Getter for TxLogDir of the Element transaction-service
return getAttributeValue(ServerTags.TX_LOG_DIR);
|
void | initialize(int options)
|
public boolean | isAutomaticRecovery()Getter for AutomaticRecovery of the Element transaction-service
return toBoolean(getAttributeValue(ServerTags.AUTOMATIC_RECOVERY));
|
public ElementProperty | newElementProperty()Create a new bean using it's default constructor.
This does not add it to any bean graph.
return new ElementProperty();
|
public static void | removeComparator(org.netbeans.modules.schema2beans.BeanComparator c)
comparators.remove(c);
|
public int | removeElementProperty(ElementProperty value)
return this.removeValue(ELEMENT_PROPERTY, value);
|
public int | removeElementProperty(ElementProperty value, boolean overwrite)
return this.removeValue(ELEMENT_PROPERTY, value, overwrite);
|
public void | setAutomaticRecovery(boolean v, boolean overwrite)Modify the AutomaticRecovery of the Element transaction-service
setAttributeValue(ServerTags.AUTOMATIC_RECOVERY, ""+(v==true), overwrite);
|
public void | setAutomaticRecovery(boolean v)Modify the AutomaticRecovery of the Element transaction-service
setAttributeValue(ServerTags.AUTOMATIC_RECOVERY, ""+(v==true));
|
public void | setElementProperty(ElementProperty[] value)
this.setValue(ELEMENT_PROPERTY, value);
|
public void | setHeuristicDecision(java.lang.String v, boolean overwrite)Modify the HeuristicDecision of the Element transaction-service
setAttributeValue(ServerTags.HEURISTIC_DECISION, v, overwrite);
|
public void | setHeuristicDecision(java.lang.String v)Modify the HeuristicDecision of the Element transaction-service
setAttributeValue(ServerTags.HEURISTIC_DECISION, v);
|
public void | setKeypointInterval(java.lang.String v, boolean overwrite)Modify the KeypointInterval of the Element transaction-service
setAttributeValue(ServerTags.KEYPOINT_INTERVAL, v, overwrite);
|
public void | setKeypointInterval(java.lang.String v)Modify the KeypointInterval of the Element transaction-service
setAttributeValue(ServerTags.KEYPOINT_INTERVAL, v);
|
public void | setRetryTimeoutInSeconds(java.lang.String v, boolean overwrite)Modify the RetryTimeoutInSeconds of the Element transaction-service
setAttributeValue(ServerTags.RETRY_TIMEOUT_IN_SECONDS, v, overwrite);
|
public void | setRetryTimeoutInSeconds(java.lang.String v)Modify the RetryTimeoutInSeconds of the Element transaction-service
setAttributeValue(ServerTags.RETRY_TIMEOUT_IN_SECONDS, v);
|
public void | setTimeoutInSeconds(java.lang.String v, boolean overwrite)Modify the TimeoutInSeconds of the Element transaction-service
setAttributeValue(ServerTags.TIMEOUT_IN_SECONDS, v, overwrite);
|
public void | setTimeoutInSeconds(java.lang.String v)Modify the TimeoutInSeconds of the Element transaction-service
setAttributeValue(ServerTags.TIMEOUT_IN_SECONDS, v);
|
public void | setTxLogDir(java.lang.String v, boolean overwrite)Modify the TxLogDir of the Element transaction-service
setAttributeValue(ServerTags.TX_LOG_DIR, v, overwrite);
|
public void | setTxLogDir(java.lang.String v)Modify the TxLogDir of the Element transaction-service
setAttributeValue(ServerTags.TX_LOG_DIR, v);
|
public int | sizeElementProperty()
return this.size(ELEMENT_PROPERTY);
|
public void | validate()
|