Package org.springframework.xd.shell.command.JobCommandTests

Examples of org.springframework.xd.shell.command.JobCommandTests.JobParametersHolder.addParameter()


    final JobParameters jobParameters = chunkContext.getStepContext().getStepExecution().getJobParameters();
    final Set<Entry<String, JobParameter>> parameterEntries = jobParameters.getParameters().entrySet();

    for (Entry<String, JobParameter> jobParameterEntry : parameterEntries) {
      jobParametersHolder.addParameter(jobParameterEntry.getKey(), jobParameterEntry.getValue());
    }

    jobParametersHolder.countDown();

    return RepeatStatus.FINISHED;
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.