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 response) throws BCGReceiverException
process
Postprocesses the response document. Returns an array of receiver documents.
public ReceiverDocumentInterface[] process( ReceiverDocumentInterface response) throws BCGReceiverException