Uses of Class
org.springframework.batch.core.JobParameters

Packages that use JobParameters
org.springframework.batch.core Core domain context for Spring Batch covering jobs, steps, configuration and execution abstractions. 
org.springframework.batch.core.converter Support classes for implementations of the batch APIs. 
org.springframework.batch.core.job Specific implementations of job concerns. 
org.springframework.batch.core.launch Interfaces and simple implementations of launch concerns. 
org.springframework.batch.core.launch.support Support classes for use in bootstrap and launch implementations or configurations. 
org.springframework.batch.core.repository Interfaces and generic implementations of repository concerns. 
org.springframework.batch.core.repository.dao Specific implementations of dao concerns. 
org.springframework.batch.core.repository.support Specific implementations of repository concerns. 
org.springframework.batch.core.step.job   
 

Uses of JobParameters in org.springframework.batch.core
 

Methods in org.springframework.batch.core that return JobParameters
 JobParameters JobInstance.getJobParameters()
           
 JobParameters StepExecution.getJobParameters()
          Convenience method to get the current job parameters.
 JobParameters JobParametersIncrementer.getNext(JobParameters parameters)
          Increment the provided parameters.
 JobParameters JobParametersBuilder.toJobParameters()
          Conversion method that takes the current state of this builder and returns it as a JobruntimeParameters object.
 

Methods in org.springframework.batch.core with parameters of type JobParameters
 JobParameters JobParametersIncrementer.getNext(JobParameters parameters)
          Increment the provided parameters.
 void JobParametersValidator.validate(JobParameters parameters)
          Check the parameters meet whatever requirements are appropriate, and throw an exception if not.
 

Constructors in org.springframework.batch.core with parameters of type JobParameters
JobInstance(Long id, JobParameters jobParameters, String jobName)
           
JobParametersBuilder(JobParameters jobParameters)
          Copy constructor.
 

Uses of JobParameters in org.springframework.batch.core.converter
 

Methods in org.springframework.batch.core.converter that return JobParameters
 JobParameters DefaultJobParametersConverter.getJobParameters(Properties props)
          Check for suffix on keys and use those to decide how to convert the value.
 JobParameters JobParametersConverter.getJobParameters(Properties properties)
          Get a new JobParameters instance.
 

Methods in org.springframework.batch.core.converter with parameters of type JobParameters
 Properties DefaultJobParametersConverter.getProperties(JobParameters params)
          Use the same suffixes to create properties (omitting the string suffix because it is the default).
 Properties JobParametersConverter.getProperties(JobParameters params)
          The inverse operation: get a Properties instance.
 

Uses of JobParameters in org.springframework.batch.core.job
 

Methods in org.springframework.batch.core.job with parameters of type JobParameters
 void DefaultJobParametersValidator.validate(JobParameters parameters)
          Check the parameters meet the specification provided.
 void CompositeJobParametersValidator.validate(JobParameters parameters)
          Validates the JobParameters according to the injected JobParameterValidators Validation stops and exception is thrown on first validation error
 

Uses of JobParameters in org.springframework.batch.core.launch
 

Methods in org.springframework.batch.core.launch with parameters of type JobParameters
 JobExecution JobLauncher.run(Job job, JobParameters jobParameters)
          Start a job execution for the given Job and JobParameters .
 

Uses of JobParameters in org.springframework.batch.core.launch.support
 

Methods in org.springframework.batch.core.launch.support that return JobParameters
 JobParameters ScheduledJobParametersFactory.getJobParameters(Properties props)
           
 JobParameters RunIdIncrementer.getNext(JobParameters parameters)
          Increment the run.id parameter (starting with 1).
 

Methods in org.springframework.batch.core.launch.support with parameters of type JobParameters
 JobParameters RunIdIncrementer.getNext(JobParameters parameters)
          Increment the run.id parameter (starting with 1).
 Properties ScheduledJobParametersFactory.getProperties(JobParameters params)
          Convert schedule date to Date, and assume all other parameters can be represented by their default string value.
 JobExecution SimpleJobLauncher.run(Job job, JobParameters jobParameters)
          Run the provided job with the given JobParameters.
 

Uses of JobParameters in org.springframework.batch.core.repository
 

Methods in org.springframework.batch.core.repository with parameters of type JobParameters
 JobExecution JobRepository.createJobExecution(String jobName, JobParameters jobParameters)
           Create a JobExecution for a given Job and JobParameters.
 JobExecution JobRepository.getLastJobExecution(String jobName, JobParameters jobParameters)
           
 boolean JobRepository.isJobInstanceExists(String jobName, JobParameters jobParameters)
          Check if an instance of this job already exists with the parameters provided.
 

Uses of JobParameters in org.springframework.batch.core.repository.dao
 

Methods in org.springframework.batch.core.repository.dao with parameters of type JobParameters
 JobInstance JobInstanceDao.createJobInstance(String jobName, JobParameters jobParameters)
          Create a JobInstance with given name and parameters.
 JobInstance JdbcJobInstanceDao.createJobInstance(String jobName, JobParameters jobParameters)
          In this jdbc implementation a job id is obtained by asking the jobIncrementer (which is likely a sequence) for the next long value, and then passing the Id and parameter values into an INSERT statement.
 JobInstance MapJobInstanceDao.createJobInstance(String jobName, JobParameters jobParameters)
           
protected  String JdbcJobInstanceDao.createJobKey(JobParameters jobParameters)
           
 JobInstance JobInstanceDao.getJobInstance(String jobName, JobParameters jobParameters)
          Find the job instance that matches the given name and parameters.
 JobInstance JdbcJobInstanceDao.getJobInstance(String jobName, JobParameters jobParameters)
          The job table is queried for any jobs that match the given identifier, adding them to a list via the RowMapper callback.
 JobInstance MapJobInstanceDao.getJobInstance(String jobName, JobParameters jobParameters)
           
 

Uses of JobParameters in org.springframework.batch.core.repository.support
 

Methods in org.springframework.batch.core.repository.support with parameters of type JobParameters
 JobExecution SimpleJobRepository.createJobExecution(String jobName, JobParameters jobParameters)
           
 JobExecution SimpleJobRepository.getLastJobExecution(String jobName, JobParameters jobParameters)
           
 boolean SimpleJobRepository.isJobInstanceExists(String jobName, JobParameters jobParameters)
           
 

Uses of JobParameters in org.springframework.batch.core.step.job
 

Methods in org.springframework.batch.core.step.job that return JobParameters
 JobParameters DefaultJobParametersExtractor.getJobParameters(Job job, StepExecution stepExecution)
           
 JobParameters JobParametersExtractor.getJobParameters(Job job, StepExecution stepExecution)
          Extract job parameters from the step execution, for example from the execution context or other properties.
 



Copyright © 2012. All Rights Reserved.