Package org.jitterbit.integration.data.structure

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


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

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


     * Creates a new web service with the specified ID and name.
     *
     */
    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 restoreWsdlFile(Persistor p) {
        wsdlFile = WsdlFile.fromPersistor(p.getFirstChild("WsdlFile"));
    }

    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"));
View Full Code Here

TOP

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

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.