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(ConnectorConnectionPool.class).getString("cannotAddDuplicate", "ElementProperty"));
}
return this.addValue(ELEMENT_PROPERTY, value, overwrite);
|
public int | addSecurityMap(SecurityMap value)
return addSecurityMap(value, true);
|
public int | addSecurityMap(SecurityMap value, boolean overwrite)
SecurityMap old = getSecurityMapByName(value.getName());
if(old != null) {
throw new ConfigException(StringManager.getManager(ConnectorConnectionPool.class).getString("cannotAddDuplicate", "SecurityMap"));
}
return this.addValue(SECURITY_MAP, 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("SecurityMap["+this.sizeSecurityMap()+"]"); // NOI18N
for(int i=0; i<this.sizeSecurityMap(); i++)
{
str.append(indent+"\t");
str.append("#"+i+":");
n = (org.netbeans.modules.schema2beans.BaseBean) this.getSecurityMap(i);
if (n != null)
n.dump(str, indent + "\t"); // NOI18N
else
str.append(indent+"\tnull"); // NOI18N
this.dumpAttributes(SECURITY_MAP, i, 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("ConnectorConnectionPool\n"); // NOI18N
this.dump(str, "\n "); // NOI18N
return str.toString();
|
public java.lang.String | getConnectionCreationRetryAttempts()Getter for ConnectionCreationRetryAttempts of the Element connector-connection-pool
return getAttributeValue(ServerTags.CONNECTION_CREATION_RETRY_ATTEMPTS);
|
public java.lang.String | getConnectionCreationRetryIntervalInSeconds()Getter for ConnectionCreationRetryIntervalInSeconds of the Element connector-connection-pool
return getAttributeValue(ServerTags.CONNECTION_CREATION_RETRY_INTERVAL_IN_SECONDS);
|
public java.lang.String | getConnectionDefinitionName()Getter for ConnectionDefinitionName of the Element connector-connection-pool
return getAttributeValue(ServerTags.CONNECTION_DEFINITION_NAME);
|
public java.lang.String | getConnectionLeakTimeoutInSeconds()Getter for ConnectionLeakTimeoutInSeconds of the Element connector-connection-pool
return getAttributeValue(ServerTags.CONNECTION_LEAK_TIMEOUT_IN_SECONDS);
|
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.FAIL_ALL_CONNECTIONS)) return "false".trim();
if(attr.equals(ServerTags.IS_CONNECTION_VALIDATION_REQUIRED)) 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.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 "true".trim();
if(attr.equals(ServerTags.MAX_CONNECTION_USAGE_COUNT)) return "0".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 | 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 | 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 "true".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 | getDefaultPoolResizeQuantity()Get the default value of PoolResizeQuantity from dtd
return "2".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 java.lang.String | getDescription()Return the Description of the Element connector-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 connector-connection-pool
return getAttributeValue(ServerTags.IDLE_TIMEOUT_IN_SECONDS);
|
public java.lang.String | getMaxConnectionUsageCount()Getter for MaxConnectionUsageCount of the Element connector-connection-pool
return getAttributeValue(ServerTags.MAX_CONNECTION_USAGE_COUNT);
|
public java.lang.String | getMaxPoolSize()Getter for MaxPoolSize of the Element connector-connection-pool
return getAttributeValue(ServerTags.MAX_POOL_SIZE);
|
public java.lang.String | getMaxWaitTimeInMillis()Getter for MaxWaitTimeInMillis of the Element connector-connection-pool
return getAttributeValue(ServerTags.MAX_WAIT_TIME_IN_MILLIS);
|
public java.lang.String | getName()Getter for Name of the Element connector-connection-pool
return getAttributeValue(ServerTags.NAME);
|
public java.lang.String | getPoolResizeQuantity()Getter for PoolResizeQuantity of the Element connector-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 = "connector-connection-pool" + (canHaveSiblings() ? "[@name='" + getAttributeValue("name") +"']" : "") ;
return (null != ret ? ret.trim() : null);
|
public java.lang.String | getResourceAdapterName()Getter for ResourceAdapterName of the Element connector-connection-pool
return getAttributeValue(ServerTags.RESOURCE_ADAPTER_NAME);
|
public SecurityMap | getSecurityMap(int index)
return (SecurityMap)this.getValue(SECURITY_MAP, index);
|
public SecurityMap[] | getSecurityMap()
return (SecurityMap[])this.getValues(SECURITY_MAP);
|
public SecurityMap | getSecurityMapByName(java.lang.String id)
if (null != id) { id = id.trim(); }
SecurityMap[] o = getSecurityMap();
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 | getSteadyPoolSize()Getter for SteadyPoolSize of the Element connector-connection-pool
return getAttributeValue(ServerTags.STEADY_POOL_SIZE);
|
public java.lang.String | getTransactionSupport()Getter for TransactionSupport of the Element connector-connection-pool
return getAttributeValue(ServerTags.TRANSACTION_SUPPORT);
|
public java.lang.String | getValidateAtmostOncePeriodInSeconds()Getter for ValidateAtmostOncePeriodInSeconds of the Element connector-connection-pool
return getAttributeValue(ServerTags.VALIDATE_ATMOST_ONCE_PERIOD_IN_SECONDS);
|
void | initialize(int options)
|
public boolean | isAssociateWithThread()Getter for AssociateWithThread of the Element connector-connection-pool
return toBoolean(getAttributeValue(ServerTags.ASSOCIATE_WITH_THREAD));
|
public boolean | isConnectionLeakReclaim()Getter for ConnectionLeakReclaim of the Element connector-connection-pool
return toBoolean(getAttributeValue(ServerTags.CONNECTION_LEAK_RECLAIM));
|
public boolean | isFailAllConnections()Getter for FailAllConnections of the Element connector-connection-pool
return toBoolean(getAttributeValue(ServerTags.FAIL_ALL_CONNECTIONS));
|
public boolean | isIsConnectionValidationRequired()Getter for IsConnectionValidationRequired of the Element connector-connection-pool
return toBoolean(getAttributeValue(ServerTags.IS_CONNECTION_VALIDATION_REQUIRED));
|
public boolean | isLazyConnectionAssociation()Getter for LazyConnectionAssociation of the Element connector-connection-pool
return toBoolean(getAttributeValue(ServerTags.LAZY_CONNECTION_ASSOCIATION));
|
public boolean | isLazyConnectionEnlistment()Getter for LazyConnectionEnlistment of the Element connector-connection-pool
return toBoolean(getAttributeValue(ServerTags.LAZY_CONNECTION_ENLISTMENT));
|
public boolean | isMatchConnections()Getter for MatchConnections of the Element connector-connection-pool
return toBoolean(getAttributeValue(ServerTags.MATCH_CONNECTIONS));
|
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 SecurityMap | newSecurityMap()Create a new bean using it's default constructor.
This does not add it to any bean graph.
return new SecurityMap();
|
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 int | removeSecurityMap(SecurityMap value)
return this.removeValue(SECURITY_MAP, value);
|
public int | removeSecurityMap(SecurityMap value, boolean overwrite)
return this.removeValue(SECURITY_MAP, value, overwrite);
|
public void | setAssociateWithThread(boolean v, boolean overwrite)Modify the AssociateWithThread of the Element connector-connection-pool
setAttributeValue(ServerTags.ASSOCIATE_WITH_THREAD, ""+(v==true), overwrite);
|
public void | setAssociateWithThread(boolean v)Modify the AssociateWithThread of the Element connector-connection-pool
setAttributeValue(ServerTags.ASSOCIATE_WITH_THREAD, ""+(v==true));
|
public void | setConnectionCreationRetryAttempts(java.lang.String v, boolean overwrite)Modify the ConnectionCreationRetryAttempts of the Element connector-connection-pool
setAttributeValue(ServerTags.CONNECTION_CREATION_RETRY_ATTEMPTS, v, overwrite);
|
public void | setConnectionCreationRetryAttempts(java.lang.String v)Modify the ConnectionCreationRetryAttempts of the Element connector-connection-pool
setAttributeValue(ServerTags.CONNECTION_CREATION_RETRY_ATTEMPTS, v);
|
public void | setConnectionCreationRetryIntervalInSeconds(java.lang.String v, boolean overwrite)Modify the ConnectionCreationRetryIntervalInSeconds of the Element connector-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 connector-connection-pool
setAttributeValue(ServerTags.CONNECTION_CREATION_RETRY_INTERVAL_IN_SECONDS, v);
|
public void | setConnectionDefinitionName(java.lang.String v, boolean overwrite)Modify the ConnectionDefinitionName of the Element connector-connection-pool
setAttributeValue(ServerTags.CONNECTION_DEFINITION_NAME, v, overwrite);
|
public void | setConnectionDefinitionName(java.lang.String v)Modify the ConnectionDefinitionName of the Element connector-connection-pool
setAttributeValue(ServerTags.CONNECTION_DEFINITION_NAME, v);
|
public void | setConnectionLeakReclaim(boolean v, boolean overwrite)Modify the ConnectionLeakReclaim of the Element connector-connection-pool
setAttributeValue(ServerTags.CONNECTION_LEAK_RECLAIM, ""+(v==true), overwrite);
|
public void | setConnectionLeakReclaim(boolean v)Modify the ConnectionLeakReclaim of the Element connector-connection-pool
setAttributeValue(ServerTags.CONNECTION_LEAK_RECLAIM, ""+(v==true));
|
public void | setConnectionLeakTimeoutInSeconds(java.lang.String v, boolean overwrite)Modify the ConnectionLeakTimeoutInSeconds of the Element connector-connection-pool
setAttributeValue(ServerTags.CONNECTION_LEAK_TIMEOUT_IN_SECONDS, v, overwrite);
|
public void | setConnectionLeakTimeoutInSeconds(java.lang.String v)Modify the ConnectionLeakTimeoutInSeconds of the Element connector-connection-pool
setAttributeValue(ServerTags.CONNECTION_LEAK_TIMEOUT_IN_SECONDS, v);
|
public void | setDescription(java.lang.String v)Modify the Description of the Element connector-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 connector-connection-pool
setAttributeValue(ServerTags.FAIL_ALL_CONNECTIONS, ""+(v==true), overwrite);
|
public void | setFailAllConnections(boolean v)Modify the FailAllConnections of the Element connector-connection-pool
setAttributeValue(ServerTags.FAIL_ALL_CONNECTIONS, ""+(v==true));
|
public void | setIdleTimeoutInSeconds(java.lang.String v, boolean overwrite)Modify the IdleTimeoutInSeconds of the Element connector-connection-pool
setAttributeValue(ServerTags.IDLE_TIMEOUT_IN_SECONDS, v, overwrite);
|
public void | setIdleTimeoutInSeconds(java.lang.String v)Modify the IdleTimeoutInSeconds of the Element connector-connection-pool
setAttributeValue(ServerTags.IDLE_TIMEOUT_IN_SECONDS, v);
|
public void | setIsConnectionValidationRequired(boolean v, boolean overwrite)Modify the IsConnectionValidationRequired of the Element connector-connection-pool
setAttributeValue(ServerTags.IS_CONNECTION_VALIDATION_REQUIRED, ""+(v==true), overwrite);
|
public void | setIsConnectionValidationRequired(boolean v)Modify the IsConnectionValidationRequired of the Element connector-connection-pool
setAttributeValue(ServerTags.IS_CONNECTION_VALIDATION_REQUIRED, ""+(v==true));
|
public void | setLazyConnectionAssociation(boolean v, boolean overwrite)Modify the LazyConnectionAssociation of the Element connector-connection-pool
setAttributeValue(ServerTags.LAZY_CONNECTION_ASSOCIATION, ""+(v==true), overwrite);
|
public void | setLazyConnectionAssociation(boolean v)Modify the LazyConnectionAssociation of the Element connector-connection-pool
setAttributeValue(ServerTags.LAZY_CONNECTION_ASSOCIATION, ""+(v==true));
|
public void | setLazyConnectionEnlistment(boolean v, boolean overwrite)Modify the LazyConnectionEnlistment of the Element connector-connection-pool
setAttributeValue(ServerTags.LAZY_CONNECTION_ENLISTMENT, ""+(v==true), overwrite);
|
public void | setLazyConnectionEnlistment(boolean v)Modify the LazyConnectionEnlistment of the Element connector-connection-pool
setAttributeValue(ServerTags.LAZY_CONNECTION_ENLISTMENT, ""+(v==true));
|
public void | setMatchConnections(boolean v, boolean overwrite)Modify the MatchConnections of the Element connector-connection-pool
setAttributeValue(ServerTags.MATCH_CONNECTIONS, ""+(v==true), overwrite);
|
public void | setMatchConnections(boolean v)Modify the MatchConnections of the Element connector-connection-pool
setAttributeValue(ServerTags.MATCH_CONNECTIONS, ""+(v==true));
|
public void | setMaxConnectionUsageCount(java.lang.String v, boolean overwrite)Modify the MaxConnectionUsageCount of the Element connector-connection-pool
setAttributeValue(ServerTags.MAX_CONNECTION_USAGE_COUNT, v, overwrite);
|
public void | setMaxConnectionUsageCount(java.lang.String v)Modify the MaxConnectionUsageCount of the Element connector-connection-pool
setAttributeValue(ServerTags.MAX_CONNECTION_USAGE_COUNT, v);
|
public void | setMaxPoolSize(java.lang.String v, boolean overwrite)Modify the MaxPoolSize of the Element connector-connection-pool
setAttributeValue(ServerTags.MAX_POOL_SIZE, v, overwrite);
|
public void | setMaxPoolSize(java.lang.String v)Modify the MaxPoolSize of the Element connector-connection-pool
setAttributeValue(ServerTags.MAX_POOL_SIZE, v);
|
public void | setMaxWaitTimeInMillis(java.lang.String v, boolean overwrite)Modify the MaxWaitTimeInMillis of the Element connector-connection-pool
setAttributeValue(ServerTags.MAX_WAIT_TIME_IN_MILLIS, v, overwrite);
|
public void | setMaxWaitTimeInMillis(java.lang.String v)Modify the MaxWaitTimeInMillis of the Element connector-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 connector-connection-pool
setAttributeValue(ServerTags.NAME, v, overwrite);
|
public void | setName(java.lang.String v)Modify the Name of the Element connector-connection-pool
setAttributeValue(ServerTags.NAME, v);
|
public void | setPoolResizeQuantity(java.lang.String v, boolean overwrite)Modify the PoolResizeQuantity of the Element connector-connection-pool
setAttributeValue(ServerTags.POOL_RESIZE_QUANTITY, v, overwrite);
|
public void | setPoolResizeQuantity(java.lang.String v)Modify the PoolResizeQuantity of the Element connector-connection-pool
setAttributeValue(ServerTags.POOL_RESIZE_QUANTITY, v);
|
public void | setResourceAdapterName(java.lang.String v, boolean overwrite)Modify the ResourceAdapterName of the Element connector-connection-pool
setAttributeValue(ServerTags.RESOURCE_ADAPTER_NAME, v, overwrite);
|
public void | setResourceAdapterName(java.lang.String v)Modify the ResourceAdapterName of the Element connector-connection-pool
setAttributeValue(ServerTags.RESOURCE_ADAPTER_NAME, v);
|
public void | setSecurityMap(SecurityMap[] value)
this.setValue(SECURITY_MAP, value);
|
public void | setSteadyPoolSize(java.lang.String v, boolean overwrite)Modify the SteadyPoolSize of the Element connector-connection-pool
setAttributeValue(ServerTags.STEADY_POOL_SIZE, v, overwrite);
|
public void | setSteadyPoolSize(java.lang.String v)Modify the SteadyPoolSize of the Element connector-connection-pool
setAttributeValue(ServerTags.STEADY_POOL_SIZE, v);
|
public void | setTransactionSupport(java.lang.String v, boolean overwrite)Modify the TransactionSupport of the Element connector-connection-pool
setAttributeValue(ServerTags.TRANSACTION_SUPPORT, v, overwrite);
|
public void | setTransactionSupport(java.lang.String v)Modify the TransactionSupport of the Element connector-connection-pool
setAttributeValue(ServerTags.TRANSACTION_SUPPORT, v);
|
public void | setValidateAtmostOncePeriodInSeconds(java.lang.String v, boolean overwrite)Modify the ValidateAtmostOncePeriodInSeconds of the Element connector-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 connector-connection-pool
setAttributeValue(ServerTags.VALIDATE_ATMOST_ONCE_PERIOD_IN_SECONDS, v);
|
public int | sizeElementProperty()
return this.size(ELEMENT_PROPERTY);
|
public int | sizeSecurityMap()
return this.size(SECURITY_MAP);
|
public void | validate()
|