This interface describes the methods that all postprocessing handlers must implement:
init
Initializes the handler
public void init(Context context, Config handlerConfig) throws BCGReceiverException
applies
The handler returns true if it can process the request document. Otherwise it returns false.
public boolean applies(ReceiverDocumentInterface request response) throws BCGReceiverException
process
Postprocesses the response document. Returns an array of a receiver document.
public ReceiverDocumentInterface[] process( ReceiverDocumentInterface request response) throws BCGReceiverException