Package eu.planets_project.ifr.core.wee.api.workflow

Examples of eu.planets_project.ifr.core.wee.api.workflow.ServiceCallConfigs


   * @param wft the workflowTemplate we're currently configuring
   * @param planetsService the PlanetsService instance obtained by reflection for which to set the parameter configuration
   * @param serviceParams the parameter data for a service handed over by the xml config
   */
  private static void setServiceParameters(WorkflowTemplate wft, PlanetsService planetsService, Parameters serviceParams){
    ServiceCallConfigs serCallConf = new ServiceCallConfigs();
    for(Param param : serviceParams.getParam()){
      if((param.getName()!=null)&& (param.getValue()!=null)){
        //now add the information which will then be used for invoking the service call
        serCallConf.setProperty(param.getName(), param.getValue());
      }
    }
    wft.setServiceCallConfigs(planetsService, serCallConf);
  }
View Full Code Here

TOP

Related Classes of eu.planets_project.ifr.core.wee.api.workflow.ServiceCallConfigs

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.