javax.batch.api.listener
Class AbstractStepListener

java.lang.Object
  extended by javax.batch.api.listener.AbstractStepListener
All Implemented Interfaces:
StepListener

public abstract class AbstractStepListener
extends Object
implements StepListener

The AbstractStepListener provides default implementations of less commonly implemented methods.


Constructor Summary
AbstractStepListener()
           
 
Method Summary
 void afterStep()
          Override this method if the StepListener will do something after the step ends.
 void beforeStep()
          Override this method if the StepListener will do something before the step begins.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AbstractStepListener

public AbstractStepListener()
Method Detail

beforeStep

public void beforeStep()
                throws Exception
Override this method if the StepListener will do something before the step begins. The default implementation does nothing.

Specified by:
beforeStep in interface StepListener
Throws:
Exception - (or subclass) if an error occurs.

afterStep

public void afterStep()
               throws Exception
Override this method if the StepListener will do something after the step ends. The default implementation does nothing.

Specified by:
afterStep in interface StepListener
Throws:
Exception - (or subclass) if an error occurs.


© Copyright IBM Corp. 2013
Licensed under the Apache License, Version 2.0