Result result = getInitializedResult();
WebComponentNameConstructor compName = new WebComponentNameConstructor(descriptor);
SecurityRoleMapping[] secRoleMapp = descriptor.getIasWebApp().getSecurityRoleMapping();
String roleName;
String prinNames[];
String grpNames[];
boolean oneFailed = false;
//System.out.println(">>>>>>>>>>>>> count of refs are "+ejbRefs.length);
if (secRoleMapp !=null && secRoleMapp.length > 0) {
for (int rep=0; rep<secRoleMapp.length; rep++ ) {
roleName=secRoleMapp[rep].getRoleName();
prinNames=secRoleMapp[rep].getPrincipalName();
grpNames=secRoleMapp[rep].getGroupName();
if(validRoleName(roleName,descriptor)){
result.passed(smh.getLocalString
(getClass().getName() + ".passed",
"PASSED [AS-WEB security-role-mapping] role-name [ {0} ] properly defined in the war file.",
new Object[] {roleName}));
}else{
result.failed(smh.getLocalString
(getClass().getName() + ".failed",
"FAILED [AS-WEB security-role-mapping] role-name [ {0} ] is not valid, either empty or not defined in web.xml.",
new Object[] {roleName}));
oneFailed = true;
}
if (prinNames !=null && prinNames.length > 0) {
String prinName;
for (int rep1=0; rep1<prinNames.length; rep1++ ) {
// <addition> srini@sun.com Bug : 4699658
//prinName = prinNames[rep1];
prinName = prinNames[rep1].trim();
// </addition>
if(prinName !=null && ! "".equals(prinName)){
result.passed(smh.getLocalString
(getClass().getName() + ".passed1",
"PASSED [AS-WEB security-role-mapping] principal-name [ {0} ] properly defined in the war file.",
new Object[] {prinName}));
}else{
result.failed(smh.getLocalString
(getClass().getName() + ".failed1",
"FAILED [AS-WEB security-role-mapping] principal-name [ {0} ] cannot be empty string.",
new Object[] {prinName}));
oneFailed = true;
}
}
}
if (grpNames !=null && grpNames.length > 0) {
String grpName;
for (int rep1=0; rep1<grpNames.length; rep1++ ) {
// <addition> srini@sun.com Bug : 4699658
//grpName =grpNames[rep1];
grpName =grpNames[rep1].trim();
// </addition>
if(grpName !=null && ! "".equals(grpName)){
result.passed(smh.getLocalString
(getClass().getName() + ".passed2",
"PASSED [AS-WEB security-role-mapping] group-name [ {0} ] properly defined in the war file.",
new Object[] {grpName}));
}else{
result.failed(smh.getLocalString
(getClass().getName() + ".failed2",
"FAILED [AS-WEB security-role-mapping] group-name [ {0} ] cannot be an empty string.",
new Object[] {grpName}));
oneFailed = true;
}
}
}
}
} else {
result.notApplicable(smh.getLocalString
(getClass().getName() + ".notApplicable",
"NOT APPLICABLE [AS-WEB sun-web-app] security-role-mapping element not defined in the web archive [ {0} ].",
new Object[] {descriptor.getName()}));
return result;
}
if (oneFailed){
result.setStatus(Result.FAILED);
} else {
result.setStatus(Result.PASSED);
result.passed
(smh.getLocalString
(getClass().getName() + ".passed3",
"PASSED [AS-WEB sun-web-app] security-role-mapping element(s) are valid within the web archive [ {0} ].",
new Object[] {descriptor.getName()} ));
}
return result;