Result result = getInitializedResult();
ComponentNameConstructor compName = getVerifierContext().getComponentNameConstructor();
String pool = null;
String poolResizeQty = null;
String maxPoolSize = null;
boolean oneFailed = false;
try{
pool = getXPathValue("/sun-ejb-jar/enterprise-beans/ejb[ejb-name=\""+descriptor.getName()+"\"]/bean-pool");
if (pool!=null)
{
poolResizeQty = getXPathValue("/sun-ejb-jar/enterprise-beans/ejb[ejb-name=\""+descriptor.getName()+"\"]/bean-pool/resize-quantity");
try{
if (poolResizeQty!=null)
{
poolResizeQty = poolResizeQty.trim();
if (poolResizeQty.length()==0)
{
addErrorDetails(result, compName);
result.failed(smh.getLocalString(getClass().getName()+".failed",
"FAILED [AS-EJB bean-pool] : resize-quantity cannot be empty"));
}else
{
int resizeQtyVal = Integer.valueOf(poolResizeQty).intValue();
if (resizeQtyVal < 0 || resizeQtyVal > Integer.MAX_VALUE)
{
addErrorDetails(result, compName);
result.failed(smh.getLocalString(getClass().getName()+".failed1",
"FAILED [AS-EJB bean-pool] : resize-quantity cannot be [ {0} ]. It should be between 0 and {1}",
new Object[]{new Integer(poolResizeQty),new Integer(Integer.MAX_VALUE)}));
}else
{
int poolSizeVal=0;
maxPoolSize = getXPathValue("/sun-ejb-jar/enterprise-beans/ejb[ejb-name=\""+descriptor.getName()+"\"]/bean-pool/max-pool-size");
if (maxPoolSize!=null)
{
try{
poolSizeVal = Integer.valueOf(maxPoolSize).intValue();
}catch(NumberFormatException nfe){
oneFailed = true;
addErrorDetails(result, compName);
result.failed(smh.getLocalString(getClass().getName()+".failed2",
"FAILED [AS-EJB bean-pool] : The value [ {0} ] for max-pool-size is not a valid Integer number",new Object[]{maxPoolSize}));
}
if (!oneFailed){
if (resizeQtyVal <= poolSizeVal)
{
addGoodDetails(result, compName);
result.passed(smh.getLocalString(getClass().getName()+".passed",
"PASSED [AS-EJB bean-pool] : resize-quantity is [ {0} ] and is less-than/equal to max-pool-size[{1}]",
new Object[]{new Integer(poolResizeQty), new Integer(maxPoolSize)}));
}
else
{
addWarningDetails(result, compName);
result.warning(smh.getLocalString(getClass().getName()+".warning",
"WARNING [AS-EJB bean-pool] : resize-quantity [ {0} ] is greater than max-pool-size [{1}]",new Object[]{new Integer(poolResizeQty), new Integer(maxPoolSize)}));
}
}
}else
{
addGoodDetails(result, compName);
result.passed(smh.getLocalString(getClass().getName()+".passed1",
"PASSED [AS-EJB bean-pool] : resize-quantity is [ {0} ]", new Object[]{new Integer(poolResizeQty)}));
}
}
}
}else // if resize-quantity not defined
{
addNaDetails(result, compName);
result.notApplicable(smh.getLocalString(getClass().getName()+".notApplicable",
"NOT APPLICABLE [AS-EJB bean-pool] : resize-quantity element not defined"));
}
}catch(NumberFormatException nfex){
Verifier.debug(nfex);
addErrorDetails(result, compName);
result.failed(smh.getLocalString(getClass().getName()+".failed3",
"FAILED [AS-EJB bean-pool] : The value [ {0} ] for resize-quantity is not a valid Integer number",
new Object[]{poolResizeQty}));
}
}else // if bean-pool is not defined
{
addNaDetails(result, compName);
result.notApplicable(smh.getLocalString(getClass().getName()+".notApplicable1",
"NOT APPLICABLE [AS-EJB] : bean-pool element not defined"));
}
}catch(Exception ex)
{
addErrorDetails(result, compName);
result.addErrorDetails(smh.getLocalString
(getClass().getName() + ".notRun",
"NOT RUN [AS-EJB] : Could not create the descriptor object"));
}
return result;