builder.build(doc, null, null);
}
protected void performSTAction(int actionToDo, boolean mu, Document doc, RequestData reqData)
throws WSSecurityException {
WSSAddSAMLToken builder = new WSSAddSAMLToken(reqData.getActor(), mu);
SAMLIssuer saml = loadSamlIssuer(reqData);
saml.setUsername(reqData.getUsername());
SAMLAssertion assertion = saml.newAssertion();
// add the SAMLAssertion Token to the SOAP Enevelope
builder.build(doc, assertion);
}