CommandExecutorImpl executer = habitat.getService(CommandExecutorImpl.class);
try {
ActionReport actionReport = executer.executeCommand("undeploy", newParams);
actionReport.writeReport(System.out);
} catch (CommandException e) {
throw new GlassFishException(e);
} catch (IOException e) {
throw new GlassFishException(e);
}
}