} else if (SPConstants.CLAIMS.equals(ln)) {
issuedToken.setClaims(child);
} else if (org.apache.neethi.Constants.ELEM_POLICY.equals(ln)) {
foundPolicy = true;
Policy policy = builder.getPolicy(child);
policy = policy.normalize(builder.getPolicyRegistry(), false);
issuedToken.setPolicy(child);
for (Iterator<List<Assertion>> iterator = policy.getAlternatives(); iterator.hasNext();) {
processAlternative(iterator.next(), issuedToken);
break; // since there should be only one alternative ..