Package org.jitterbit.integration.data.structure

Examples of org.jitterbit.integration.data.structure.WebServiceResponseStructure


            return wsCall.getName() + " - Response";
        }

        @Override
        protected void setStructure(WebServiceCall wsCall, Transformation tx) {
            WebServiceResponseStructure responseStructure = new WebServiceResponseStructure(wsCall.getID());
            responseStructure.setOpInfo(wsCall.getOperationInfo());
            tx.setInputStructure(responseStructure);
        }
View Full Code Here


     *
     */
    public WebServiceCall(WebServiceCallId wsId, String name) {
        super(EntityType.WebServiceCall, wsId, name);
        requestStructure = new WebServiceRequestStructure(getID());
        responseStructure = new WebServiceResponseStructure(getID());
    }
View Full Code Here

    private void restoreStructures(Persistor p) {
        requestStructure = new WebServiceRequestStructure(getID());
        requestStructure.restoreFrom(p.getFirstChild("Request"));
        WebServiceOperationInfo opInfo = getOperationInfo();
        requestStructure.setOpInfo(opInfo);
        responseStructure = new WebServiceResponseStructure(getID());
        responseStructure.restoreFrom(p.getFirstChild("Response"));
        responseStructure.setOpInfo(opInfo);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.structure.WebServiceResponseStructure

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.