Package org.foo.shell.commands

Examples of org.foo.shell.commands.UninstallCommand


      "install <url> - Install the bundle jar at the given url."));
    commands.put("start", new StartCommand().setContext(context).setHelp(
      "start <id> - Start the bundle with the given bundle id."));
    commands.put("stop", new StopCommand().setContext(context).setHelp(
      "stop <id> - Stop the bundle with the given bundle id."));
    commands.put("uninstall", new UninstallCommand().setContext(context).setHelp(
      "uninstall <id> - Uninstall the bundle with the given bundle id."));
    commands.put("update", new UpdateCommand().setContext(context).setHelp(
      "update <id> - Update the bundle with the given bundle id."));
    commands.put("startlevel", new StartLevelCommand().setContext(context).setHelp(
      "startlevel [<level>] - Get or set the framework startlevel."));
View Full Code Here

TOP

Related Classes of org.foo.shell.commands.UninstallCommand

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.