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(JdbcConnectionPool.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("Description"); // NOI18N
str.append(indent+"\t"); // NOI18N
str.append("<"); // NOI18N
o = this.getDescription();
str.append((o==null?"null":o.toString().trim())); // NOI18N
str.append(">\n"); // NOI18N
this.dumpAttributes(DESCRIPTION, 0, str, indent);
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("JdbcConnectionPool\n"); // NOI18N
this.dump(str, "\n "); // NOI18N
return str.toString();
|
public java.lang.String | getConnectionCreationRetryAttempts()Getter for ConnectionCreationRetryAttempts of the Element jdbc-connection-pool
return getAttributeValue(ServerTags.CONNECTION_CREATION_RETRY_ATTEMPTS);
|
public java.lang.String | getConnectionCreationRetryIntervalInSeconds()Getter for ConnectionCreationRetryIntervalInSeconds of the Element jdbc-connection-pool
return getAttributeValue(ServerTags.CONNECTION_CREATION_RETRY_INTERVAL_IN_SECONDS);
|
public java.lang.String | getConnectionLeakTimeoutInSeconds()Getter for ConnectionLeakTimeoutInSeconds of the Element jdbc-connection-pool
return getAttributeValue(ServerTags.CONNECTION_LEAK_TIMEOUT_IN_SECONDS);
|
public java.lang.String | getConnectionValidationMethod()Getter for ConnectionValidationMethod of the Element jdbc-connection-pool
return getAttributeValue(ServerTags.CONNECTION_VALIDATION_METHOD);
|
public java.lang.String | getDatasourceClassname()Getter for DatasourceClassname of the Element jdbc-connection-pool
return getAttributeValue(ServerTags.DATASOURCE_CLASSNAME);
|
public static java.lang.String | getDefaultAllowNonComponentCallers()Get the default value of AllowNonComponentCallers from dtd
return "false".trim();
|
public static java.lang.String | getDefaultAssociateWithThread()Get the default value of AssociateWithThread from dtd
return "false".trim();
|
public static java.lang.String | getDefaultAttributeValue(java.lang.String attr)
if(attr == null) return null;
attr = attr.trim();
if(attr.equals(ServerTags.STEADY_POOL_SIZE)) return "8".trim();
if(attr.equals(ServerTags.MAX_POOL_SIZE)) return "32".trim();
if(attr.equals(ServerTags.MAX_WAIT_TIME_IN_MILLIS)) return "60000".trim();
if(attr.equals(ServerTags.POOL_RESIZE_QUANTITY)) return "2".trim();
if(attr.equals(ServerTags.IDLE_TIMEOUT_IN_SECONDS)) return "300".trim();
if(attr.equals(ServerTags.IS_ISOLATION_LEVEL_GUARANTEED)) return "true".trim();
if(attr.equals(ServerTags.IS_CONNECTION_VALIDATION_REQUIRED)) return "false".trim();
if(attr.equals(ServerTags.CONNECTION_VALIDATION_METHOD)) return "auto-commit".trim();
if(attr.equals(ServerTags.FAIL_ALL_CONNECTIONS)) return "false".trim();
if(attr.equals(ServerTags.NON_TRANSACTIONAL_CONNECTIONS)) return "false".trim();
if(attr.equals(ServerTags.ALLOW_NON_COMPONENT_CALLERS)) return "false".trim();
if(attr.equals(ServerTags.VALIDATE_ATMOST_ONCE_PERIOD_IN_SECONDS)) return "0".trim();
if(attr.equals(ServerTags.CONNECTION_LEAK_TIMEOUT_IN_SECONDS)) return "0".trim();
if(attr.equals(ServerTags.CONNECTION_LEAK_RECLAIM)) return "false".trim();
if(attr.equals(ServerTags.CONNECTION_CREATION_RETRY_ATTEMPTS)) return "0".trim();
if(attr.equals(ServerTags.CONNECTION_CREATION_RETRY_INTERVAL_IN_SECONDS)) return "10".trim();
if(attr.equals(ServerTags.STATEMENT_TIMEOUT_IN_SECONDS)) return "-1".trim();
if(attr.equals(ServerTags.LAZY_CONNECTION_ENLISTMENT)) return "false".trim();
if(attr.equals(ServerTags.LAZY_CONNECTION_ASSOCIATION)) return "false".trim();
if(attr.equals(ServerTags.ASSOCIATE_WITH_THREAD)) return "false".trim();
if(attr.equals(ServerTags.MATCH_CONNECTIONS)) return "false".trim();
if(attr.equals(ServerTags.MAX_CONNECTION_USAGE_COUNT)) return "0".trim();
if(attr.equals(ServerTags.WRAP_JDBC_OBJECTS)) return "false".trim();
return null;
|
public static java.lang.String | getDefaultConnectionCreationRetryAttempts()Get the default value of ConnectionCreationRetryAttempts from dtd
return "0".trim();
|
public static java.lang.String | getDefaultConnectionCreationRetryIntervalInSeconds()Get the default value of ConnectionCreationRetryIntervalInSeconds from dtd
return "10".trim();
|
public static java.lang.String | getDefaultConnectionLeakReclaim()Get the default value of ConnectionLeakReclaim from dtd
return "false".trim();
|
public static java.lang.String | getDefaultConnectionLeakTimeoutInSeconds()Get the default value of ConnectionLeakTimeoutInSeconds from dtd
return "0".trim();
|
public static java.lang.String | getDefaultConnectionValidationMethod()Get the default value of ConnectionValidationMethod from dtd
return "auto-commit".trim();
|
public static java.lang.String | getDefaultFailAllConnections()Get the default value of FailAllConnections from dtd
return "false".trim();
|
public static java.lang.String | getDefaultIdleTimeoutInSeconds()Get the default value of IdleTimeoutInSeconds from dtd
return "300".trim();
|
public static java.lang.String | getDefaultIsConnectionValidationRequired()Get the default value of IsConnectionValidationRequired from dtd
return "false".trim();
|
public static java.lang.String | getDefaultIsIsolationLevelGuaranteed()Get the default value of IsIsolationLevelGuaranteed from dtd
return "true".trim();
|
public static java.lang.String | getDefaultLazyConnectionAssociation()Get the default value of LazyConnectionAssociation from dtd
return "false".trim();
|
public static java.lang.String | getDefaultLazyConnectionEnlistment()Get the default value of LazyConnectionEnlistment from dtd
return "false".trim();
|
public static java.lang.String | getDefaultMatchConnections()Get the default value of MatchConnections from dtd
return "false".trim();
|
public static java.lang.String | getDefaultMaxConnectionUsageCount()Get the default value of MaxConnectionUsageCount from dtd
return "0".trim();
|
public static java.lang.String | getDefaultMaxPoolSize()Get the default value of MaxPoolSize from dtd
return "32".trim();
|
public static java.lang.String | getDefaultMaxWaitTimeInMillis()Get the default value of MaxWaitTimeInMillis from dtd
return "60000".trim();
|
public static java.lang.String | getDefaultNonTransactionalConnections()Get the default value of NonTransactionalConnections from dtd
return "false".trim();
|
public static java.lang.String | getDefaultPoolResizeQuantity()Get the default value of PoolResizeQuantity from dtd
return "2".trim();
|
public static java.lang.String | getDefaultStatementTimeoutInSeconds()Get the default value of StatementTimeoutInSeconds from dtd
return "-1".trim();
|
public static java.lang.String | getDefaultSteadyPoolSize()Get the default value of SteadyPoolSize from dtd
return "8".trim();
|
public static java.lang.String | getDefaultValidateAtmostOncePeriodInSeconds()Get the default value of ValidateAtmostOncePeriodInSeconds from dtd
return "0".trim();
|
public static java.lang.String | getDefaultWrapJdbcObjects()Get the default value of WrapJdbcObjects from dtd
return "false".trim();
|
public java.lang.String | getDescription()Return the Description of the Element jdbc-connection-pool
return (String) getValue(ServerTags.DESCRIPTION);
|
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 | getIdleTimeoutInSeconds()Getter for IdleTimeoutInSeconds of the Element jdbc-connection-pool
return getAttributeValue(ServerTags.IDLE_TIMEOUT_IN_SECONDS);
|
public java.lang.String | getMaxConnectionUsageCount()Getter for MaxConnectionUsageCount of the Element jdbc-connection-pool
return getAttributeValue(ServerTags.MAX_CONNECTION_USAGE_COUNT);
|
public java.lang.String | getMaxPoolSize()Getter for MaxPoolSize of the Element jdbc-connection-pool
return getAttributeValue(ServerTags.MAX_POOL_SIZE);
|
public java.lang.String | getMaxWaitTimeInMillis()Getter for MaxWaitTimeInMillis of the Element jdbc-connection-pool
return getAttributeValue(ServerTags.MAX_WAIT_TIME_IN_MILLIS);
|
public java.lang.String | getName()Getter for Name of the Element jdbc-connection-pool
return getAttributeValue(ServerTags.NAME);
|
public java.lang.String | getPoolResizeQuantity()Getter for PoolResizeQuantity of the Element jdbc-connection-pool
return getAttributeValue(ServerTags.POOL_RESIZE_QUANTITY);
|
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 = "jdbc-connection-pool" + (canHaveSiblings() ? "[@name='" + getAttributeValue("name") +"']" : "") ;
return (null != ret ? ret.trim() : null);
|
public java.lang.String | getResType()Getter for ResType of the Element jdbc-connection-pool
return getAttributeValue(ServerTags.RES_TYPE);
|
public java.lang.String | getStatementTimeoutInSeconds()Getter for StatementTimeoutInSeconds of the Element jdbc-connection-pool
return getAttributeValue(ServerTags.STATEMENT_TIMEOUT_IN_SECONDS);
|
public java.lang.String | getSteadyPoolSize()Getter for SteadyPoolSize of the Element jdbc-connection-pool
return getAttributeValue(ServerTags.STEADY_POOL_SIZE);
|
public java.lang.String | getTransactionIsolationLevel()Getter for TransactionIsolationLevel of the Element jdbc-connection-pool
return getAttributeValue(ServerTags.TRANSACTION_ISOLATION_LEVEL);
|
public java.lang.String | getValidateAtmostOncePeriodInSeconds()Getter for ValidateAtmostOncePeriodInSeconds of the Element jdbc-connection-pool
return getAttributeValue(ServerTags.VALIDATE_ATMOST_ONCE_PERIOD_IN_SECONDS);
|
public java.lang.String | getValidationTableName()Getter for ValidationTableName of the Element jdbc-connection-pool
return getAttributeValue(ServerTags.VALIDATION_TABLE_NAME);
|
void | initialize(int options)
|
public boolean | isAllowNonComponentCallers()Getter for AllowNonComponentCallers of the Element jdbc-connection-pool
return toBoolean(getAttributeValue(ServerTags.ALLOW_NON_COMPONENT_CALLERS));
|
public boolean | isAssociateWithThread()Getter for AssociateWithThread of the Element jdbc-connection-pool
return toBoolean(getAttributeValue(ServerTags.ASSOCIATE_WITH_THREAD));
|
public boolean | isConnectionLeakReclaim()Getter for ConnectionLeakReclaim of the Element jdbc-connection-pool
return toBoolean(getAttributeValue(ServerTags.CONNECTION_LEAK_RECLAIM));
|
public boolean | isFailAllConnections()Getter for FailAllConnections of the Element jdbc-connection-pool
return toBoolean(getAttributeValue(ServerTags.FAIL_ALL_CONNECTIONS));
|
public boolean | isIsConnectionValidationRequired()Getter for IsConnectionValidationRequired of the Element jdbc-connection-pool
return toBoolean(getAttributeValue(ServerTags.IS_CONNECTION_VALIDATION_REQUIRED));
|
public boolean | isIsIsolationLevelGuaranteed()Getter for IsIsolationLevelGuaranteed of the Element jdbc-connection-pool
return toBoolean(getAttributeValue(ServerTags.IS_ISOLATION_LEVEL_GUARANTEED));
|
public boolean | isLazyConnectionAssociation()Getter for LazyConnectionAssociation of the Element jdbc-connection-pool
return toBoolean(getAttributeValue(ServerTags.LAZY_CONNECTION_ASSOCIATION));
|
public boolean | isLazyConnectionEnlistment()Getter for LazyConnectionEnlistment of the Element jdbc-connection-pool
return toBoolean(getAttributeValue(ServerTags.LAZY_CONNECTION_ENLISTMENT));
|
public boolean | isMatchConnections()Getter for MatchConnections of the Element jdbc-connection-pool
return toBoolean(getAttributeValue(ServerTags.MATCH_CONNECTIONS));
|
public boolean | isNonTransactionalConnections()Getter for NonTransactionalConnections of the Element jdbc-connection-pool
return toBoolean(getAttributeValue(ServerTags.NON_TRANSACTIONAL_CONNECTIONS));
|
public boolean | isWrapJdbcObjects()Getter for WrapJdbcObjects of the Element jdbc-connection-pool
return toBoolean(getAttributeValue(ServerTags.WRAP_JDBC_OBJECTS));
|
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 | setAllowNonComponentCallers(boolean v, boolean overwrite)Modify the AllowNonComponentCallers of the Element jdbc-connection-pool
setAttributeValue(ServerTags.ALLOW_NON_COMPONENT_CALLERS, ""+(v==true), overwrite);
|
public void | setAllowNonComponentCallers(boolean v)Modify the AllowNonComponentCallers of the Element jdbc-connection-pool
setAttributeValue(ServerTags.ALLOW_NON_COMPONENT_CALLERS, ""+(v==true));
|
public void | setAssociateWithThread(boolean v, boolean overwrite)Modify the AssociateWithThread of the Element jdbc-connection-pool
setAttributeValue(ServerTags.ASSOCIATE_WITH_THREAD, ""+(v==true), overwrite);
|
public void | setAssociateWithThread(boolean v)Modify the AssociateWithThread of the Element jdbc-connection-pool
setAttributeValue(ServerTags.ASSOCIATE_WITH_THREAD, ""+(v==true));
|
public void | setConnectionCreationRetryAttempts(java.lang.String v, boolean overwrite)Modify the ConnectionCreationRetryAttempts of the Element jdbc-connection-pool
setAttributeValue(ServerTags.CONNECTION_CREATION_RETRY_ATTEMPTS, v, overwrite);
|
public void | setConnectionCreationRetryAttempts(java.lang.String v)Modify the ConnectionCreationRetryAttempts of the Element jdbc-connection-pool
setAttributeValue(ServerTags.CONNECTION_CREATION_RETRY_ATTEMPTS, v);
|
public void | setConnectionCreationRetryIntervalInSeconds(java.lang.String v, boolean overwrite)Modify the ConnectionCreationRetryIntervalInSeconds of the Element jdbc-connection-pool
setAttributeValue(ServerTags.CONNECTION_CREATION_RETRY_INTERVAL_IN_SECONDS, v, overwrite);
|
public void | setConnectionCreationRetryIntervalInSeconds(java.lang.String v)Modify the ConnectionCreationRetryIntervalInSeconds of the Element jdbc-connection-pool
setAttributeValue(ServerTags.CONNECTION_CREATION_RETRY_INTERVAL_IN_SECONDS, v);
|
public void | setConnectionLeakReclaim(boolean v, boolean overwrite)Modify the ConnectionLeakReclaim of the Element jdbc-connection-pool
setAttributeValue(ServerTags.CONNECTION_LEAK_RECLAIM, ""+(v==true), overwrite);
|
public void | setConnectionLeakReclaim(boolean v)Modify the ConnectionLeakReclaim of the Element jdbc-connection-pool
setAttributeValue(ServerTags.CONNECTION_LEAK_RECLAIM, ""+(v==true));
|
public void | setConnectionLeakTimeoutInSeconds(java.lang.String v, boolean overwrite)Modify the ConnectionLeakTimeoutInSeconds of the Element jdbc-connection-pool
setAttributeValue(ServerTags.CONNECTION_LEAK_TIMEOUT_IN_SECONDS, v, overwrite);
|
public void | setConnectionLeakTimeoutInSeconds(java.lang.String v)Modify the ConnectionLeakTimeoutInSeconds of the Element jdbc-connection-pool
setAttributeValue(ServerTags.CONNECTION_LEAK_TIMEOUT_IN_SECONDS, v);
|
public void | setConnectionValidationMethod(java.lang.String v, boolean overwrite)Modify the ConnectionValidationMethod of the Element jdbc-connection-pool
setAttributeValue(ServerTags.CONNECTION_VALIDATION_METHOD, v, overwrite);
|
public void | setConnectionValidationMethod(java.lang.String v)Modify the ConnectionValidationMethod of the Element jdbc-connection-pool
setAttributeValue(ServerTags.CONNECTION_VALIDATION_METHOD, v);
|
public void | setDatasourceClassname(java.lang.String v, boolean overwrite)Modify the DatasourceClassname of the Element jdbc-connection-pool
setAttributeValue(ServerTags.DATASOURCE_CLASSNAME, v, overwrite);
|
public void | setDatasourceClassname(java.lang.String v)Modify the DatasourceClassname of the Element jdbc-connection-pool
setAttributeValue(ServerTags.DATASOURCE_CLASSNAME, v);
|
public void | setDescription(java.lang.String v)Modify the Description of the Element jdbc-connection-pool
setValue(ServerTags.DESCRIPTION, (null != v ? v.trim() : null));
|
public void | setElementProperty(ElementProperty[] value)
this.setValue(ELEMENT_PROPERTY, value);
|
public void | setFailAllConnections(boolean v, boolean overwrite)Modify the FailAllConnections of the Element jdbc-connection-pool
setAttributeValue(ServerTags.FAIL_ALL_CONNECTIONS, ""+(v==true), overwrite);
|
public void | setFailAllConnections(boolean v)Modify the FailAllConnections of the Element jdbc-connection-pool
setAttributeValue(ServerTags.FAIL_ALL_CONNECTIONS, ""+(v==true));
|
public void | setIdleTimeoutInSeconds(java.lang.String v, boolean overwrite)Modify the IdleTimeoutInSeconds of the Element jdbc-connection-pool
setAttributeValue(ServerTags.IDLE_TIMEOUT_IN_SECONDS, v, overwrite);
|
public void | setIdleTimeoutInSeconds(java.lang.String v)Modify the IdleTimeoutInSeconds of the Element jdbc-connection-pool
setAttributeValue(ServerTags.IDLE_TIMEOUT_IN_SECONDS, v);
|
public void | setIsConnectionValidationRequired(boolean v, boolean overwrite)Modify the IsConnectionValidationRequired of the Element jdbc-connection-pool
setAttributeValue(ServerTags.IS_CONNECTION_VALIDATION_REQUIRED, ""+(v==true), overwrite);
|
public void | setIsConnectionValidationRequired(boolean v)Modify the IsConnectionValidationRequired of the Element jdbc-connection-pool
setAttributeValue(ServerTags.IS_CONNECTION_VALIDATION_REQUIRED, ""+(v==true));
|
public void | setIsIsolationLevelGuaranteed(boolean v, boolean overwrite)Modify the IsIsolationLevelGuaranteed of the Element jdbc-connection-pool
setAttributeValue(ServerTags.IS_ISOLATION_LEVEL_GUARANTEED, ""+(v==true), overwrite);
|
public void | setIsIsolationLevelGuaranteed(boolean v)Modify the IsIsolationLevelGuaranteed of the Element jdbc-connection-pool
setAttributeValue(ServerTags.IS_ISOLATION_LEVEL_GUARANTEED, ""+(v==true));
|
public void | setLazyConnectionAssociation(boolean v, boolean overwrite)Modify the LazyConnectionAssociation of the Element jdbc-connection-pool
setAttributeValue(ServerTags.LAZY_CONNECTION_ASSOCIATION, ""+(v==true), overwrite);
|
public void | setLazyConnectionAssociation(boolean v)Modify the LazyConnectionAssociation of the Element jdbc-connection-pool
setAttributeValue(ServerTags.LAZY_CONNECTION_ASSOCIATION, ""+(v==true));
|
public void | setLazyConnectionEnlistment(boolean v)Modify the LazyConnectionEnlistment of the Element jdbc-connection-pool
setAttributeValue(ServerTags.LAZY_CONNECTION_ENLISTMENT, ""+(v==true));
|
public void | setLazyConnectionEnlistment(boolean v, boolean overwrite)Modify the LazyConnectionEnlistment of the Element jdbc-connection-pool
setAttributeValue(ServerTags.LAZY_CONNECTION_ENLISTMENT, ""+(v==true), overwrite);
|
public void | setMatchConnections(boolean v, boolean overwrite)Modify the MatchConnections of the Element jdbc-connection-pool
setAttributeValue(ServerTags.MATCH_CONNECTIONS, ""+(v==true), overwrite);
|
public void | setMatchConnections(boolean v)Modify the MatchConnections of the Element jdbc-connection-pool
setAttributeValue(ServerTags.MATCH_CONNECTIONS, ""+(v==true));
|
public void | setMaxConnectionUsageCount(java.lang.String v, boolean overwrite)Modify the MaxConnectionUsageCount of the Element jdbc-connection-pool
setAttributeValue(ServerTags.MAX_CONNECTION_USAGE_COUNT, v, overwrite);
|
public void | setMaxConnectionUsageCount(java.lang.String v)Modify the MaxConnectionUsageCount of the Element jdbc-connection-pool
setAttributeValue(ServerTags.MAX_CONNECTION_USAGE_COUNT, v);
|
public void | setMaxPoolSize(java.lang.String v, boolean overwrite)Modify the MaxPoolSize of the Element jdbc-connection-pool
setAttributeValue(ServerTags.MAX_POOL_SIZE, v, overwrite);
|
public void | setMaxPoolSize(java.lang.String v)Modify the MaxPoolSize of the Element jdbc-connection-pool
setAttributeValue(ServerTags.MAX_POOL_SIZE, v);
|
public void | setMaxWaitTimeInMillis(java.lang.String v, boolean overwrite)Modify the MaxWaitTimeInMillis of the Element jdbc-connection-pool
setAttributeValue(ServerTags.MAX_WAIT_TIME_IN_MILLIS, v, overwrite);
|
public void | setMaxWaitTimeInMillis(java.lang.String v)Modify the MaxWaitTimeInMillis of the Element jdbc-connection-pool
setAttributeValue(ServerTags.MAX_WAIT_TIME_IN_MILLIS, v);
|
public void | setName(java.lang.String v, boolean overwrite)Modify the Name of the Element jdbc-connection-pool
setAttributeValue(ServerTags.NAME, v, overwrite);
|
public void | setName(java.lang.String v)Modify the Name of the Element jdbc-connection-pool
setAttributeValue(ServerTags.NAME, v);
|
public void | setNonTransactionalConnections(boolean v, boolean overwrite)Modify the NonTransactionalConnections of the Element jdbc-connection-pool
setAttributeValue(ServerTags.NON_TRANSACTIONAL_CONNECTIONS, ""+(v==true), overwrite);
|
public void | setNonTransactionalConnections(boolean v)Modify the NonTransactionalConnections of the Element jdbc-connection-pool
setAttributeValue(ServerTags.NON_TRANSACTIONAL_CONNECTIONS, ""+(v==true));
|
public void | setPoolResizeQuantity(java.lang.String v, boolean overwrite)Modify the PoolResizeQuantity of the Element jdbc-connection-pool
setAttributeValue(ServerTags.POOL_RESIZE_QUANTITY, v, overwrite);
|
public void | setPoolResizeQuantity(java.lang.String v)Modify the PoolResizeQuantity of the Element jdbc-connection-pool
setAttributeValue(ServerTags.POOL_RESIZE_QUANTITY, v);
|
public void | setResType(java.lang.String v, boolean overwrite)Modify the ResType of the Element jdbc-connection-pool
setAttributeValue(ServerTags.RES_TYPE, v, overwrite);
|
public void | setResType(java.lang.String v)Modify the ResType of the Element jdbc-connection-pool
setAttributeValue(ServerTags.RES_TYPE, v);
|
public void | setStatementTimeoutInSeconds(java.lang.String v, boolean overwrite)Modify the StatementTimeoutInSeconds of the Element jdbc-connection-pool
setAttributeValue(ServerTags.STATEMENT_TIMEOUT_IN_SECONDS, v, overwrite);
|
public void | setStatementTimeoutInSeconds(java.lang.String v)Modify the StatementTimeoutInSeconds of the Element jdbc-connection-pool
setAttributeValue(ServerTags.STATEMENT_TIMEOUT_IN_SECONDS, v);
|
public void | setSteadyPoolSize(java.lang.String v, boolean overwrite)Modify the SteadyPoolSize of the Element jdbc-connection-pool
setAttributeValue(ServerTags.STEADY_POOL_SIZE, v, overwrite);
|
public void | setSteadyPoolSize(java.lang.String v)Modify the SteadyPoolSize of the Element jdbc-connection-pool
setAttributeValue(ServerTags.STEADY_POOL_SIZE, v);
|
public void | setTransactionIsolationLevel(java.lang.String v, boolean overwrite)Modify the TransactionIsolationLevel of the Element jdbc-connection-pool
setAttributeValue(ServerTags.TRANSACTION_ISOLATION_LEVEL, v, overwrite);
|
public void | setTransactionIsolationLevel(java.lang.String v)Modify the TransactionIsolationLevel of the Element jdbc-connection-pool
setAttributeValue(ServerTags.TRANSACTION_ISOLATION_LEVEL, v);
|
public void | setValidateAtmostOncePeriodInSeconds(java.lang.String v, boolean overwrite)Modify the ValidateAtmostOncePeriodInSeconds of the Element jdbc-connection-pool
setAttributeValue(ServerTags.VALIDATE_ATMOST_ONCE_PERIOD_IN_SECONDS, v, overwrite);
|
public void | setValidateAtmostOncePeriodInSeconds(java.lang.String v)Modify the ValidateAtmostOncePeriodInSeconds of the Element jdbc-connection-pool
setAttributeValue(ServerTags.VALIDATE_ATMOST_ONCE_PERIOD_IN_SECONDS, v);
|
public void | setValidationTableName(java.lang.String v, boolean overwrite)Modify the ValidationTableName of the Element jdbc-connection-pool
setAttributeValue(ServerTags.VALIDATION_TABLE_NAME, v, overwrite);
|
public void | setValidationTableName(java.lang.String v)Modify the ValidationTableName of the Element jdbc-connection-pool
setAttributeValue(ServerTags.VALIDATION_TABLE_NAME, v);
|
public void | setWrapJdbcObjects(boolean v, boolean overwrite)Modify the WrapJdbcObjects of the Element jdbc-connection-pool
setAttributeValue(ServerTags.WRAP_JDBC_OBJECTS, ""+(v==true), overwrite);
|
public void | setWrapJdbcObjects(boolean v)Modify the WrapJdbcObjects of the Element jdbc-connection-pool
setAttributeValue(ServerTags.WRAP_JDBC_OBJECTS, ""+(v==true));
|
public int | sizeElementProperty()
return this.size(ELEMENT_PROPERTY);
|
public void | validate()
|