Package edu.indiana.extreme.xbaya.WorkflowInterpretorStub

Examples of edu.indiana.extreme.xbaya.WorkflowInterpretorStub.NameValue


   
    String workflowAsString = getWorkflow();
    Workflow workflow = new Workflow(workflowAsString);
   
    NameValue[] configurations = new NameValue[2];
    configurations[0] = new NameValue();
    configurations[0].setName(Main.GFAC);
    configurations[0].setValue(XBayaConstants.DEFAULT_GFAC_URL.toString());
    configurations[1] = new NameValue();
    configurations[1].setName(Main.XREGISTRY);
    configurations[1].setValue(XBayaConstants.DEFAULT_XREGISTRY_URL.toString());
    //set more like dsc ets look at constants in Main
   
    NameValue[] inputs = new NameValue[1];
    inputs[0] = new NameValue();
    inputs[0].setName("input");
    inputs[0].setValue("myechoString");
   
   
   
View Full Code Here

TOP

Related Classes of edu.indiana.extreme.xbaya.WorkflowInterpretorStub.NameValue

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.