Package cu.ftpd.modules.dupecheck.eventhandler

Examples of cu.ftpd.modules.dupecheck.eventhandler.DupelogHandler


        Undupe undupe = new Undupe(dupelog);
        siteCommandHandler.registerAction("undupe", undupe);
    }

    public void registerEventHandlers(EventHandler eventHandler) {
        DupelogHandler dph = new DupelogHandler(dupelog);

        eventHandler.addAfterEventHandler(Event.DELETE_FILE, dph);      // remove from dupelog
        eventHandler.addAfterEventHandler(Event.UPLOAD, dph);           // add to dupelog
        eventHandler.addBeforeEventHandler(Event.UPLOAD, dph);          // dupecheck
    }
View Full Code Here

TOP

Related Classes of cu.ftpd.modules.dupecheck.eventhandler.DupelogHandler

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.