Package org.opensaml.ws.wsaddressing

Examples of org.opensaml.ws.wsaddressing.ReferenceParameters


*/
public class ReferenceParametersUnmarshaller extends AbstractWSAddressingObjectUnmarshaller {
   
    /** {@inheritDoc} */
    protected void processAttribute(XMLObject xmlObject, Attr attribute) throws UnmarshallingException {
        ReferenceParameters rp = (ReferenceParameters) xmlObject;
        XMLHelper.unmarshallToAttributeMap(rp.getUnknownAttributes(), attribute);
    }
View Full Code Here


    }

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

*/
public class ReferenceParametersMarshaller extends AbstractWSAddressingObjectMarshaller {

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

*/
public class ReferenceParametersMarshaller extends AbstractWSAddressingObjectMarshaller {

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

*/
public class ReferenceParametersUnmarshaller extends AbstractWSAddressingObjectUnmarshaller {
   
    /** {@inheritDoc} */
    protected void processAttribute(XMLObject xmlObject, Attr attribute) throws UnmarshallingException {
        ReferenceParameters rp = (ReferenceParameters) xmlObject;
        XMLHelper.unmarshallToAttributeMap(rp.getUnknownAttributes(), attribute);
    }
View Full Code Here

    }

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

TOP

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

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.