testCase = ejbs[i];
break;
}
}
IorSecurityConfig iorSec = testCase.getIorSecurityConfig();
if(iorSec == null)
{
result.notApplicable(smh.getLocalString(getClass().getName()+".notApplicable",
"NOT APPLICABLE [AS-EJB ior-security-config] : ior-security-config Element not defined"));
}
else
{
TransportConfig tranConfig = iorSec.getTransportConfig();
if(tranConfig != null)
testTranConfig(tranConfig,result);
else
{
result.notApplicable(smh.getLocalString(getClass().getName()+".notApplicable",
"NOT APPLICABLE [AS-EJB ior-security-config] : transport-config Element not defined"));
}
AsContext asContext = iorSec.getAsContext();
if(asContext != null)
testAsContext(asContext,result);
else
{
result.notApplicable(smh.getLocalString(getClass().getName()+".notApplicable",
"NOT APPLICABLE [AS-EJB ior-security-config] : as-context Element not defined"));
}
SasContext sasContext = iorSec.getSasContext();
if(sasContext != null)
testSasContext(sasContext,result);
else
{
result.notApplicable(smh.getLocalString(getClass().getName()+".notApplicable",