Examples of ProblemAction


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

Examples of org.opensaml.ws.wsaddressing.ProblemAction

    }

    /** {@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

Examples of org.opensaml.ws.wsaddressing.ProblemAction

*/
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

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

Examples of org.opensaml.ws.wsaddressing.ProblemAction

    }

    /** {@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

Examples of org.opensaml.ws.wsaddressing.ProblemAction

*/
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
Copyright © 2018 www.massapi.com. 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.