Package org.gpel.model

Examples of org.gpel.model.GpelInvoke


        XmlNamespace partnerLinkTypeNS = this.targetNamespace;
        this.process.addPartnerLink(partnerLinkName, partnerLinkTypeNS, partnerLinkType.getName(), null,
                partnerRoll.getName());

        // Invoke
        GpelInvoke invoke = new GpelInvoke(this.bpelNS, partnerLinkName, namespace, portTypeQName.getLocalPart(),
                operation);
        invoke.setName(INVOKE_NAME_PREFIX + id);
        invoke.setInputVariableName(inputVariableName);
        invoke.setOutputVariableName(outputVariableName);

        sequence.addActivity(invoke);
    }
View Full Code Here


        XmlNamespace partnerLinkTypeNS = this.targetNamespace;
        this.process.addPartnerLink(partnerLinkName, partnerLinkTypeNS, partnerLinkType.getName(), null,
                partnerRoll.getName());

        // Invoke
        GpelInvoke invoke = new GpelInvoke(this.bpelNS, partnerLinkName, namespace, portTypeQName.getLocalPart(),
                operation);
        invoke.setName(INVOKE_NAME_PREFIX + id);
        invoke.setInputVariableName(inputVariableName);
        invoke.setOutputVariableName(outputVariableName);

        sequence.addActivity(invoke);
    }
View Full Code Here

        XmlNamespace partnerLinkTypeNS = this.targetNamespace;
        this.process.addPartnerLink(partnerLinkName, partnerLinkTypeNS, partnerLinkType.getName(), null,
                partnerRoll.getName());

        // Invoke
        GpelInvoke invoke = new GpelInvoke(this.bpelNS, partnerLinkName, namespace, portTypeQName.getLocalPart(),
                operation);
        invoke.setName(INVOKE_NAME_PREFIX + id);
        invoke.setInputVariableName(inputVariableName);
        invoke.setOutputVariableName(outputVariableName);

        sequence.addActivity(invoke);
    }
View Full Code Here

TOP

Related Classes of org.gpel.model.GpelInvoke

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.