|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ExitStatus | |
|---|---|
| org.springframework.batch.core | Core domain context for Spring Batch covering jobs, steps, configuration and execution abstractions. |
| org.springframework.batch.core.listener | Generic implementations of core batch listener interfaces. |
| org.springframework.batch.core.step | Specific implementations of step concerns. |
| org.springframework.batch.core.step.tasklet | Interfaces and generic implementations of tasklet concerns. |
| Uses of ExitStatus in org.springframework.batch.core |
|---|
| Fields in org.springframework.batch.core declared as ExitStatus | |
|---|---|
static ExitStatus |
ExitStatus.COMPLETED
Convenient constant value representing finished processing. |
static ExitStatus |
ExitStatus.EXECUTING
Convenient constant value representing continuable state where processing is still taking place, so no further action is required. |
static ExitStatus |
ExitStatus.FAILED
Convenient constant value representing finished processing with an error. |
static ExitStatus |
ExitStatus.NOOP
Convenient constant value representing job that did no processing (e.g. |
static ExitStatus |
ExitStatus.STOPPED
Convenient constant value representing finished processing with interrupted status. |
static ExitStatus |
ExitStatus.UNKNOWN
Convenient constant value representing unknown state - assumed not continuable. |
| Methods in org.springframework.batch.core that return ExitStatus | |
|---|---|
ExitStatus |
ExitStatus.addExitDescription(java.lang.String description)
Add an exit description to an existing ExitStatus. |
ExitStatus |
StepExecutionListener.afterStep(StepExecution stepExecution)
Give a listener a chance to modify the exit status from a step. |
ExitStatus |
ExitStatus.and(ExitStatus status)
Create a new ExitStatus with a logical combination of the exit
code, and a concatenation of the descriptions. |
ExitStatus |
StepExecution.getExitStatus()
|
ExitStatus |
StepContribution.getExitStatus()
Public getter for the status. |
ExitStatus |
JobExecution.getExitStatus()
|
ExitStatus |
ExitStatus.replaceExitCode(java.lang.String code)
Add an exit code to an existing ExitStatus. |
| Methods in org.springframework.batch.core with parameters of type ExitStatus | |
|---|---|
ExitStatus |
ExitStatus.and(ExitStatus status)
Create a new ExitStatus with a logical combination of the exit
code, and a concatenation of the descriptions. |
int |
ExitStatus.compareTo(ExitStatus status)
|
void |
StepExecution.setExitStatus(ExitStatus exitStatus)
|
void |
StepContribution.setExitStatus(ExitStatus status)
Set the ExitStatus for this contribution. |
void |
JobExecution.setExitStatus(ExitStatus exitStatus)
|
| Uses of ExitStatus in org.springframework.batch.core.listener |
|---|
| Methods in org.springframework.batch.core.listener that return ExitStatus | |
|---|---|
ExitStatus |
StepListenerSupport.afterStep(StepExecution stepExecution)
|
ExitStatus |
StepExecutionListenerSupport.afterStep(StepExecution stepExecution)
|
ExitStatus |
MulticasterBatchListener.afterStep(StepExecution stepExecution)
|
ExitStatus |
ExecutionContextPromotionListener.afterStep(StepExecution stepExecution)
|
ExitStatus |
CompositeStepExecutionListener.afterStep(StepExecution stepExecution)
Call the registered listeners in reverse order, respecting and prioritising those that implement Ordered. |
ExitStatus |
StepListenerSupport.onErrorInStep(StepExecution stepExecution,
java.lang.Throwable e)
|
| Uses of ExitStatus in org.springframework.batch.core.step |
|---|
| Methods in org.springframework.batch.core.step that return ExitStatus | |
|---|---|
ExitStatus |
NoWorkFoundStepExecutionListener.afterStep(StepExecution stepExecution)
|
| Uses of ExitStatus in org.springframework.batch.core.step.tasklet |
|---|
| Methods in org.springframework.batch.core.step.tasklet that return ExitStatus | |
|---|---|
ExitStatus |
SystemProcessExitCodeMapper.getExitStatus(int exitCode)
|
ExitStatus |
SimpleSystemProcessExitCodeMapper.getExitStatus(int exitCode)
|
ExitStatus |
ConfigurableSystemProcessExitCodeMapper.getExitStatus(int exitCode)
|
protected ExitStatus |
MethodInvokingTaskletAdapter.mapResult(java.lang.Object result)
If the result is an ExitStatus already just return that,
otherwise return COMPLETED. |
| Method parameters in org.springframework.batch.core.step.tasklet with type arguments of type ExitStatus | |
|---|---|
void |
ConfigurableSystemProcessExitCodeMapper.setMappings(java.util.Map<java.lang.Object,ExitStatus> mappings)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||