*/
private Assertion createAssertion(
String sXMLID, String sParentID, String sResolved)
{
// create the SAMLSubject
Subject oSubject = new Subject();
NameID oName = new NameID(Tags.TAG_NAMEID);
oName.setNameQualifier(sParentID);
oName.setValue(sResolved);
oSubject.setNameID(oName);
// create the SAML Attribute Statement
AttributeStatement oAttrStatement = new AttributeStatement();
Attribute oAttr = new Attribute();
oAttr.setValue("#" + sXMLID);