This interface describes the methods that all postprocessing handlers must implement:
init
Initializes the handler by reading the configuration properties in the Config object
public void init(Context context, Config handlerConfig) throws BCGSenderException
applies
Determines whether the handler can process the business document
public boolean applies(BusinessDocumentInterface doc) throws BCGRSenderException
process
SenderFramework calls this method to process the delivery response and updates the SenderResult object with processing information.
public SenderResult process(SenderResult response, BusinessDocumentInterface doc) throws BCGReceiverException