/*
* We need to pick only the primitive assertions which contain a
* WSSecurityPolicy policy assertion. For that we'll check the
* namespace of the primitive assertion
*/
PrimitiveAssertion pa = (PrimitiveAssertion) assertion;
if (!(pa.getName().getNamespaceURI()
.equals(Constants.SP_NS))) {
log.debug("Got a unexpected assertion: "
+ pa.getName().getLocalPart());
continue;
}
all = processPrimitiveAssertion((PrimitiveAssertion) assertion);
}
/*