Package cu.ftpd.commands.site

Examples of cu.ftpd.commands.site.SiteCommandHandler


    public Services(FtpdSettings settings) throws IOException, ClassNotFoundException, InstantiationException, IllegalAccessException, NotBoundException, ConfigurationException, PermissionConfigurationException {
        this.settings = settings;
        configureMetadataHandler();
        configureCustomClassLoader();
        this.siteCommandHandler = new SiteCommandHandler(settings);
        initializeCustomSiteCommands();
        configureEventHandler();
        configureUserbase();
        siteCommandHandler.registerAction("chown", new Chown()); // note: only use this when we have disk (cuftpd) AND a cuftpd userbase. (create a different method body when we're doing a CubncServices object)
        configureUserStatistics();
View Full Code Here

TOP

Related Classes of cu.ftpd.commands.site.SiteCommandHandler

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.