Result result = getInitializedResult();
ComponentNameConstructor compName = getVerifierContext().getComponentNameConstructor();
String pool = null;
String steadyPoolSize=null;
String maxPoolSize = null;
try{
pool = getXPathValue("/sun-ejb-jar/enterprise-beans/ejb[ejb-name=\""+descriptor.getName()+"\"]/bean-pool");
if (pool!=null)
{
steadyPoolSize = getXPathValue("/sun-ejb-jar/enterprise-beans/ejb[ejb-name=\""+descriptor.getName()+"\"]/bean-pool/steady-pool-size");
if (steadyPoolSize!=null){
steadyPoolSize = steadyPoolSize.trim();
if (steadyPoolSize.length()==0)
{
addErrorDetails(result, compName);
result.failed(smh.getLocalString(getClass().getName()+".failed",
"FAILED [AS-EJB bean-pool] : steady-pool-size cannot be empty"));
}else
{
try
{
int value = Integer.valueOf(steadyPoolSize).intValue();
if(value < 0 || value > Integer.MAX_VALUE)
{
addErrorDetails(result, compName);
result.failed(smh.getLocalString(getClass().getName()+".failed1",
"FAILED [AS-EJB bean-pool] : steady-pool-size cannot be {0}. It should be between 0 and {1}",
new Object[]{new Integer(value),new Integer(Integer.MAX_VALUE)}));
}else
{
maxPoolSize = getXPathValue("/sun-ejb-jar/enterprise-beans/ejb[ejb-name=\""+descriptor.getName()+"\"]/bean-pool/max-pool-size");
int maxPool = 0;
if(maxPoolSize != null)
{
try{
maxPool = Integer.parseInt(maxPoolSize);
}catch(NumberFormatException nfe){
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}));
return result;
}
if(value <= maxPool)
{
addGoodDetails(result, compName);
result.passed(smh.getLocalString(getClass().getName()+".passed",
"PASSED [AS-EJB bean-pool] : steady-pool-size is {0} and is less-than/equal-to max-pool-size [{1}]",
new Object[]{new Integer(value), new Integer(maxPool)}));
}else
{
addWarningDetails(result, compName);
result.warning(smh.getLocalString(getClass().getName()+".warning","WARNING [AS-EJB bean-pool] : steady-pool-size [{0}] is greater than max-pool-size[{1}]", new Object[]{new Integer(value), new Integer(maxPool)}));
}
}else
{
addGoodDetails(result, compName);
result.passed(smh.getLocalString(getClass().getName()+".passed1",
"PASSED [AS-EJB bean-pool] : steady-pool-size is {0}",new Object[] { new Integer(value)}));
}
}
}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 steady-pool-size is not a valid Integer number",
new Object[]{steadyPoolSize}));
}
}
}else // steady-pool-size not defined
{
addNaDetails(result, compName);
result.notApplicable(smh.getLocalString(getClass().getName()+".notApplicable",
"NOT APPLICABLE [AS-EJB bean-pool] : steady-pool-size element not defined"));
}
}else // bean-pool 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 an descriptor object"));
}
return result;