@Command(scope = "shell", name = "logout", description = "Disconnects shell from current session.")
public class LogoutAction extends AbstractAction {
protected Object doExecute() throws Exception {
log.info("Disconnecting from current session...");
throw new CloseShellException();
}