Class AbstractBatchlet

java.lang.Object
jakarta.batch.api.AbstractBatchlet
All Implemented Interfaces:
Batchlet

public abstract class AbstractBatchlet extends Object implements Batchlet
The AbstractBatchlet provides default implementations of less commonly implemented methods.
  • Constructor Details

    • AbstractBatchlet

      public AbstractBatchlet()
  • Method Details

    • process

      public abstract String process() throws Exception
      Implement process logic for the Batchlet in this method.
      Specified by:
      process in interface Batchlet
      Returns:
      exit status string
      Throws:
      Exception - (or subclass) if an error occurs.
    • stop

      public void stop() throws Exception
      Override this method if the Batchlet will end in response to the JobOperator.stop() operation. The default implementation does nothing.
      Specified by:
      stop in interface Batchlet
      Throws:
      Exception - (or subclass) if an error occurs.