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.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. 
 

Uses of JobParameters in org.springframework.batch.core
 

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

Constructors in org.springframework.batch.core with parameters of type JobParameters
JobInstance(Long id, JobParameters jobParameters, Job job)
           
 

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

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

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

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)
           
 

Methods in org.springframework.batch.core.launch.support with parameters of type JobParameters
 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(Job job, JobParameters jobParameters)
          Find or create a JobExecution for a given Job and JobParameters.
 

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

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

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(Job job, JobParameters jobParameters)
           Create a JobExecution based on the passed in Job and JobParameters.
 



Copyright © 2008 SpringSource. All Rights Reserved.