Package org.opensaml.ws.wsaddressing

Examples of org.opensaml.ws.wsaddressing.AttributedURI


*/
public class AttributedURIMarshaller extends AbstractWSAddressingObjectMarshaller {

    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject xmlObject, Element domElement) throws MarshallingException {
        AttributedURI attributedURI = (AttributedURI) xmlObject;
        XMLHelper.appendTextContent(domElement, attributedURI.getValue());
    }
View Full Code Here


        XMLHelper.appendTextContent(domElement, attributedURI.getValue());
    }

    /** {@inheritDoc} */
    protected void marshallAttributes(XMLObject xmlObject, Element domElement) throws MarshallingException {
        AttributedURI attributedURI = (AttributedURI) xmlObject;
        XMLHelper.marshallAttributeMap(attributedURI.getUnknownAttributes(), domElement);
    }
View Full Code Here

public class AttributedURIUnmarshaller extends AbstractWSAddressingObjectUnmarshaller {

    /** {@inheritDoc} */
    protected void processElementContent(XMLObject xmlObject, String elementContent) {
        if (elementContent != null) {
            AttributedURI attributedURI = (AttributedURI) xmlObject;
            attributedURI.setValue(elementContent);
        }
    }
View Full Code Here

        }
    }

    /** {@inheritDoc} */
    protected void processAttribute(XMLObject xmlObject, Attr attribute) throws UnmarshallingException {
        AttributedURI attributedURI = (AttributedURI) xmlObject;
        XMLHelper.unmarshallToAttributeMap(attributedURI.getUnknownAttributes(), attribute);
    }
View Full Code Here

public class AttributedURIUnmarshaller extends AbstractWSAddressingObjectUnmarshaller {

    /** {@inheritDoc} */
    protected void processElementContent(XMLObject xmlObject, String elementContent) {
        if (elementContent != null) {
            AttributedURI attributedURI = (AttributedURI) xmlObject;
            attributedURI.setValue(elementContent);
        }
    }
View Full Code Here

        }
    }

    /** {@inheritDoc} */
    protected void processAttribute(XMLObject xmlObject, Attr attribute) throws UnmarshallingException {
        AttributedURI attributedURI = (AttributedURI) xmlObject;
        XMLHelper.unmarshallToAttributeMap(attributedURI.getUnknownAttributes(), attribute);
    }
View Full Code Here

*/
public class AttributedURIMarshaller extends AbstractWSAddressingObjectMarshaller {

    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject xmlObject, Element domElement) throws MarshallingException {
        AttributedURI attributedURI = (AttributedURI) xmlObject;
        XMLHelper.appendTextContent(domElement, attributedURI.getValue());
    }
View Full Code Here

        XMLHelper.appendTextContent(domElement, attributedURI.getValue());
    }

    /** {@inheritDoc} */
    protected void marshallAttributes(XMLObject xmlObject, Element domElement) throws MarshallingException {
        AttributedURI attributedURI = (AttributedURI) xmlObject;
        XMLHelper.marshallAttributeMap(attributedURI.getUnknownAttributes(), domElement);
    }
View Full Code Here

TOP

Related Classes of org.opensaml.ws.wsaddressing.AttributedURI

Copyright © 2018 www.massapicom. 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.