Examples of AssertionIDReference


Examples of org.opensaml.saml1.core.AssertionIDReference

*/
public class AssertionIDReferenceMarshaller extends AbstractSAMLObjectMarshaller {

    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject samlObject, Element domElement) throws MarshallingException {
        AssertionIDReference assertionIDReference = (AssertionIDReference) samlObject;
        if (assertionIDReference.getReference() != null) {
            XMLHelper.appendTextContent(domElement, assertionIDReference.getReference());
        }
    }
View Full Code Here

Examples of org.opensaml.saml1.core.AssertionIDReference

/** A thread-safe Unmarshaller for {@link org.opensaml.saml1.core.AssertionIDReference} objects. */
public class AssertionIDReferenceUnmarshaller extends AbstractSAMLObjectUnmarshaller {

    /** {@inheritDoc} */
    protected void processElementContent(XMLObject samlObject, String elementContent) {
        AssertionIDReference assertionIDReference = (AssertionIDReference) samlObject;

        assertionIDReference.setReference(elementContent);
    }
View Full Code Here

Examples of org.opensaml.saml1.core.AssertionIDReference

        super(SAMLConstants.SAML1_NS, AssertionIDReference.DEFAULT_ELEMENT_LOCAL_NAME);
    }

    /** {@inheritDoc} */
    protected void processElementContent(XMLObject samlObject, String elementContent) {
        AssertionIDReference assertionIDReference = (AssertionIDReference) samlObject;

        assertionIDReference.setReference(elementContent);
    }
View Full Code Here

Examples of org.opensaml.saml1.core.AssertionIDReference

        super(SAMLConstants.SAML1_NS, AssertionIDReference.DEFAULT_ELEMENT_LOCAL_NAME);
    }

    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject samlObject, Element domElement) throws MarshallingException {
        AssertionIDReference assertionIDReference = (AssertionIDReference) samlObject;
        if (assertionIDReference.getReference() != null) {
            XMLHelper.appendTextContent(domElement,assertionIDReference.getReference());
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.