Examples of AssertionURIRef


Examples of org.opensaml.saml2.core.AssertionURIRef

*/
public class AssertionURIRefMarshaller extends AbstractSAMLObjectMarshaller {

    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject samlObject, Element domElement) throws MarshallingException {
        AssertionURIRef assertionURIRef = (AssertionURIRef) samlObject;
        XMLHelper.appendTextContent(domElement, assertionURIRef.getAssertionURI());
    }
View Full Code Here

Examples of org.opensaml.saml2.core.AssertionURIRef

*/
public class AssertionURIRefUnmarshaller extends AbstractSAMLObjectUnmarshaller {

    /** {@inheritDoc} */
    protected void processElementContent(XMLObject samlObject, String elementContent) {
        AssertionURIRef assertionURIRef = (AssertionURIRef) samlObject;
        assertionURIRef.setAssertionURI(elementContent);
    }
View Full Code Here

Examples of org.opensaml.saml2.core.AssertionURIRef

        super(namespaceURI, elementLocalName);
    }

    /** {@inheritDoc} */
    protected void processElementContent(XMLObject samlObject, String elementContent) {
        AssertionURIRef assertionURIRef = (AssertionURIRef) samlObject;
        assertionURIRef.setAssertionURI(elementContent);
    }
View Full Code Here

Examples of org.opensaml.saml2.core.AssertionURIRef

        super(namespaceURI, elementLocalName);
    }

    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject samlObject, Element domElement) throws MarshallingException {
        AssertionURIRef assertionURIRef = (AssertionURIRef) samlObject;
        XMLHelper.appendTextContent(domElement, assertionURIRef.getAssertionURI());
    }
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.