public Assertion build(Element element, AssertionBuilderFactory factory) {
SPConstants consts = SP11Constants.SP_NS.equals(element.getNamespaceURI())
? SP11Constants.INSTANCE : SP12Constants.INSTANCE;
SamlToken samlToken = new SamlToken(consts);
samlToken.setOptional(PolicyConstants.isOptional(element));
samlToken.setIgnorable(PolicyConstants.isIgnorable(element));
String attribute = element.getAttributeNS(element.getNamespaceURI(), SPConstants.ATTR_INCLUDE_TOKEN);
if (attribute != null) {
samlToken.setInclusion(consts.getInclusionFromAttributeValue(attribute));
}
Element child = DOMUtils.getFirstElement(element);
boolean foundPolicy = false;
while (child != null) {
String ln = child.getLocalName();
if (org.apache.neethi.Constants.ELEM_POLICY.equals(ln)) {
foundPolicy = true;
samlToken.setPolicy(child);
NodeList policyChildren = child.getChildNodes();
if (policyChildren != null) {
for (int i = 0; i < policyChildren.getLength(); i++) {
Node policyChild = policyChildren.item(i);
if (policyChild instanceof Element) {
QName qname =
new QName(policyChild.getNamespaceURI(), policyChild.getLocalName());
String localname = qname.getLocalPart();
if (SPConstants.SAML_11_TOKEN_10.equals(localname)) {
samlToken.setUseSamlVersion11Profile10(true);
} else if (SPConstants.SAML_11_TOKEN_11.equals(localname)) {
samlToken.setUseSamlVersion11Profile11(true);
} else if (SPConstants.SAML_20_TOKEN_11.equals(localname)) {
samlToken.setUseSamlVersion20Profile11(true);
} else if (SPConstants.REQUIRE_DERIVED_KEYS.equals(localname)) {
samlToken.setDerivedKeys(true);
} else if (SPConstants.REQUIRE_EXPLICIT_DERIVED_KEYS.equals(localname)) {
samlToken.setExplicitDerivedKeys(true);
} else if (SPConstants.REQUIRE_IMPLIED_DERIVED_KEYS.equals(localname)) {
samlToken.setImpliedDerivedKeys(true);
} else if (SPConstants.REQUIRE_KEY_IDENTIFIER_REFERENCE.equals(localname)) {
samlToken.setRequireKeyIdentifierReference(true);
}
}
}
}
}