*
* @param tpp the post processor to be used. <code>null</code> if a default adapter that does nothing is to be used.
*/
public void setTransferPostProcessor(TransferPostProcessor tpp) {
if (tpp == null) {
this.transferPostProcessor = new TransferPostProcessorAdapter();
} else {
this.transferPostProcessor = tpp;
}
}