Each variable workflow step must implement this interface. The factory produces an instance of the BusinessProcess class. This class runs the actual business logic on the document. It has the following methods:
process
Runs the business logic on the business document that is passed in.
public BusinessDocumentInterface process( Context context, BusinessDocumentInterface bDoc)
reset
Resets the BusinessProcess class. This method is called by BusinessProcessFactory.
public boolean reset()
None