Package org.opensaml.ws.wsaddressing

Examples of org.opensaml.ws.wsaddressing.AttributedUnsignedLong


*/
public class AttributedUnsignedLongMarshaller extends AbstractWSAddressingObjectMarshaller {

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


        XMLHelper.marshallAttributeMap(aul.getUnknownAttributes(), domElement);
    }

    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject xmlObject, Element domElement) throws MarshallingException {
        AttributedUnsignedLong aul = (AttributedUnsignedLong) xmlObject;
        if (aul.getValue() != null) {
            XMLHelper.appendTextContent(domElement, aul.getValue().toString());
        }
    }
View Full Code Here

*/
public class AttributedUnsignedLongUnmarshaller extends AbstractWSAddressingObjectUnmarshaller {

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

        XMLHelper.unmarshallToAttributeMap(aul.getUnknownAttributes(), attribute);
    }

    /** {@inheritDoc} */
    protected void processElementContent(XMLObject xmlObject, String elementContent) {
        AttributedUnsignedLong aul = (AttributedUnsignedLong) xmlObject;
        if (elementContent != null) {
            aul.setValue(Long.valueOf(elementContent.trim()));
        }
    }
View Full Code Here

*/
public class AttributedUnsignedLongUnmarshaller extends AbstractWSAddressingObjectUnmarshaller {

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

        XMLHelper.unmarshallToAttributeMap(aul.getUnknownAttributes(), attribute);
    }

    /** {@inheritDoc} */
    protected void processElementContent(XMLObject xmlObject, String elementContent) {
        AttributedUnsignedLong aul = (AttributedUnsignedLong) xmlObject;
        if (elementContent != null) {
            aul.setValue(Long.valueOf(elementContent.trim()));
        }
    }
View Full Code Here

*/
public class AttributedUnsignedLongMarshaller extends AbstractWSAddressingObjectMarshaller {

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

        XMLHelper.marshallAttributeMap(aul.getUnknownAttributes(), domElement);
    }

    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject xmlObject, Element domElement) throws MarshallingException {
        AttributedUnsignedLong aul = (AttributedUnsignedLong) xmlObject;
        if (aul.getValue() != null) {
            XMLHelper.appendTextContent(domElement, aul.getValue().toString());
        }
    }
View Full Code Here

TOP

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

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.