This interface describes the methods that all preprocessing 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 BCGSenderException
process
Called by SenderFramework to preprocess the request. This method updates the BusinessDocument class.
public BusinessDocumentInterface process(BusinessDocumentInterface doc) throws BCGSenderException