*/
public void stop() throws Exception {
CommandContext context = new CommandContext();
context.setFormatter(new CommandShellOutputFormatter(System.out));
Command command = new ShutdownCommand();
command.setCommandContext(context);
List<String> tokens = new ArrayList<String>(Arrays.asList(new String[] {
"--jmxlocal", "--all", }));
command.execute(tokens);
}