Package org.opensaml.ws.wsaddressing

Examples of org.opensaml.ws.wsaddressing.ProblemAction


*/
public class ProblemActionUnmarshaller extends AbstractWSAddressingObjectUnmarshaller {

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


    }

    /** {@inheritDoc} */
    protected void processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)
            throws UnmarshallingException {
        ProblemAction pa = (ProblemAction) parentXMLObject;
       
        if (childXMLObject instanceof Action) {
            pa.setAction((Action) childXMLObject);
        } else if (childXMLObject instanceof SoapAction) {
            pa.setSoapAction((SoapAction) childXMLObject);
        } else {
            super.processChildElement(parentXMLObject, childXMLObject);
        }
    }
View Full Code Here

*/
public class ProblemActionMarshaller extends AbstractWSAddressingObjectMarshaller {

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

*/
public class ProblemActionUnmarshaller extends AbstractWSAddressingObjectUnmarshaller {

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

    }

    /** {@inheritDoc} */
    protected void processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)
            throws UnmarshallingException {
        ProblemAction pa = (ProblemAction) parentXMLObject;
       
        if (childXMLObject instanceof Action) {
            pa.setAction((Action) childXMLObject);
        } else if (childXMLObject instanceof SoapAction) {
            pa.setSoapAction((SoapAction) childXMLObject);
        } else {
            super.processChildElement(parentXMLObject, childXMLObject);
        }
    }
View Full Code Here

*/
public class ProblemActionMarshaller extends AbstractWSAddressingObjectMarshaller {

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

TOP

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

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.