Package cu.ftpd.modules.nukehandler.actions

Examples of cu.ftpd.modules.nukehandler.actions.Nuke


            throw new ConfigurationException("Failed to load nukelog: " + e.getMessage(), e);
        }
    }

    public void registerActions(SiteCommandHandler siteCommandHandler) {
        siteCommandHandler.registerAction("nuke", new Nuke(nukeHandler, true));
        siteCommandHandler.registerAction("unnuke", new Nuke(nukeHandler, false));

    }
View Full Code Here

TOP

Related Classes of cu.ftpd.modules.nukehandler.actions.Nuke

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.