Package org.opensaml.ws.wsaddressing

Examples of org.opensaml.ws.wsaddressing.Metadata


*/
public class MetadataUnmarshaller extends AbstractWSAddressingObjectUnmarshaller {

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


    }

    /** {@inheritDoc} */
    protected void processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)
            throws UnmarshallingException {
        Metadata metadata = (Metadata) parentXMLObject;
        metadata.getUnknownXMLObjects().add(childXMLObject);
    }
View Full Code Here

*/
public class MetadataMarshaller extends AbstractWSAddressingObjectMarshaller {

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

*/
public class MetadataUnmarshaller extends AbstractWSAddressingObjectUnmarshaller {

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

    }

    /** {@inheritDoc} */
    protected void processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)
            throws UnmarshallingException {
        Metadata metadata = (Metadata) parentXMLObject;
        metadata.getUnknownXMLObjects().add(childXMLObject);
    }
View Full Code Here

*/
public class MetadataMarshaller extends AbstractWSAddressingObjectMarshaller {

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

TOP

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

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.