Package org.apache.airavata.schemas.wec

Examples of org.apache.airavata.schemas.wec.NameValuePairType


   
         if (this.workflowSchedulingContext == null) {
               this.workflowSchedulingContext = WorkflowSchedulingContextDocument.WorkflowSchedulingContext.Factory
                       .newInstance();
           }
         NameValuePairType  nameValuePair = workflowSchedulingContext.addNewNameValuePair();
         if(workflowNodeId != null){
           nameValuePair.setWorkflowNodeId(workflowNodeId);
         }
         if(name != null && value != null){
           nameValuePair.setName(name);
           nameValuePair.setValue(value);
         }
         if(description != null){
           nameValuePair.setDescription(description);
         }
         return this;
    }
View Full Code Here

TOP

Related Classes of org.apache.airavata.schemas.wec.NameValuePairType

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.