Package cu.ftpd.commands.transfer

Examples of cu.ftpd.commands.transfer.TransferPostProcessorAdapter


     *
     * @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;
        }
    }
View Full Code Here

TOP

Related Classes of cu.ftpd.commands.transfer.TransferPostProcessorAdapter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.