Examples of JobParametersType


Examples of org.springframework.yarn.batch.repository.bindings.JobParametersType

   *
   * @param jobParameters the job parameters
   * @return converted job parameters type
   */
  public static JobParametersType convertJobParameters(JobParameters jobParameters) {
    JobParametersType type = new JobParametersType();
    type.parameters = new HashMap<String, JobParameterType>();

    Map<String, JobParameter> parameters = jobParameters.getParameters();
    for(Entry<String, JobParameter> entry : parameters.entrySet()) {
      JobParameterType jobParameterType = new JobParameterType();
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.