Result result = getInitializedResult();
ComponentNameConstructor compName = getVerifierContext().getComponentNameConstructor();
String roleName;
List<PrincipalNameDescriptor> prinNames;
List<String> grpNames;
boolean oneFailed = false;
try{
SecurityRoleMapping[] secRoleMapp = (descriptor.getSunDescriptor()).getSecurityRoleMapping();
if (secRoleMapp !=null && secRoleMapp.length > 0) {
for (int rep=0; rep<secRoleMapp.length; rep++ ) {
roleName=secRoleMapp[rep].getRoleName();
prinNames=secRoleMapp[rep].getPrincipalNames();
grpNames=secRoleMapp[rep].getGroupNames();
if(validRoleName(roleName,descriptor)){
addGoodDetails(result, compName);
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{
addErrorDetails(result, compName);
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.size() > 0){
String prinName;
for (int rep1=0; rep1<prinNames.size(); rep1++ ) {
// <addition> srini@sun.com Bug : 4699658
prinName = prinNames.get(rep1).getName().trim();
// </addition>
if(prinName !=null && ! "".equals(prinName)){
addGoodDetails(result, compName);
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{
addErrorDetails(result, compName);
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.size() > 0) {
String grpName;
for (int rep1=0; rep1<grpNames.size(); rep1++ ) {
// <addition> srini@sun.com Bug : 4699658
grpName =grpNames.get(rep1).trim();
// </addition>
if(grpName !=null && ! "".equals(grpName)){
addGoodDetails(result, compName);
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{
addErrorDetails(result, compName);
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 {
addNaDetails(result, compName);
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);
addGoodDetails(result, compName);
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()} ));
}
}catch(Exception ex){
oneFailed = true;
addErrorDetails(result, compName);
result.failed(smh.getLocalString
(getClass().getName() + ".failed3",
"FAILED [AS-WEB security-role-mapping] could not create the security-role-mapping object"));
}
return result;