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

Constructors in org.springframework.batch.core with parameters of type JobParameters
JobInstance(java.lang.Long id, JobParameters jobParameters, java.lang.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 JobParametersConverter.getJobParameters(java.util.Properties properties)
          Get a new JobParameters instance.
 JobParameters DefaultJobParametersConverter.getJobParameters(java.util.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
 java.util.Properties JobParametersConverter.getProperties(JobParameters params)
          The inverse operation: get a Properties instance.
 java.util.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(java.util.Properties props)
           
 

Methods in org.springframework.batch.core.launch.support with parameters of type JobParameters
 java.util.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(java.lang.String jobName, JobParameters jobParameters)
           Create a JobExecution for a given Job and JobParameters.
 JobExecution JobRepository.getLastJobExecution(java.lang.String jobName, JobParameters jobParameters)
           
 boolean JobRepository.isJobInstanceExists(java.lang.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 MapJobInstanceDao.createJobInstance(java.lang.String jobName, JobParameters jobParameters)
           
 JobInstance JobInstanceDao.createJobInstance(java.lang.String jobName, JobParameters jobParameters)
          Create a JobInstance with given name and parameters.
 JobInstance JdbcJobInstanceDao.createJobInstance(java.lang.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.
protected  java.lang.String JdbcJobInstanceDao.createJobKey(JobParameters jobParameters)
           
 JobInstance MapJobInstanceDao.getJobInstance(java.lang.String jobName, JobParameters jobParameters)
           
 JobInstance JobInstanceDao.getJobInstance(java.lang.String jobName, JobParameters jobParameters)
          Find the job instance that matches the given name and parameters.
 JobInstance JdbcJobInstanceDao.getJobInstance(java.lang.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.
 

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(java.lang.String jobName, JobParameters jobParameters)
           
 JobExecution SimpleJobRepository.getLastJobExecution(java.lang.String jobName, JobParameters jobParameters)
           
 boolean SimpleJobRepository.isJobInstanceExists(java.lang.String jobName, JobParameters jobParameters)
           
 



Copyright © 2009. All Rights Reserved.