Package org.gpel.model

Examples of org.gpel.model.GpelVariablesContainer.xml()


   * @throws CloneNotSupportedException
   */
  public void addreceive(GpelProcess process, WsdlDefinitions workflowWsdl, String operationName, String receiveMessage ) throws CloneNotSupportedException {

    GpelVariablesContainer variables = process.getVariables();
    XmlNamespace ns = variables.xml().getNamespace();
    GpelVariable var = new GpelVariable(ns, "newReceiveVar");
    variables.addVariable(var);
    var.setMessageTypeQName(new QName(workflowWsdl.getTargetNamespace(),
        receiveMessage));

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.