Package org.apache.sling.crankstart.core.commands

Examples of org.apache.sling.crankstart.core.commands.NullCommand


        builtinCommands.add(new Exit());
       
        // Need a null "classpath" command as our launcher uses it
        // outside of the usual command mechanism - it shouldn't cause
        // an error in the normal processing
        builtinCommands.add(new NullCommand("classpath", "set the classpath used by the Crankstart launcher"));
       
        log.info("{} ready, built-in commands: {}", getClass().getSimpleName(), getDescriptions(builtinCommands));
    }
View Full Code Here

TOP

Related Classes of org.apache.sling.crankstart.core.commands.NullCommand

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.