From 9fd77f53bd6238ee94b1ed5fe55dcfbfb475a93d Mon Sep 17 00:00:00 2001 From: Endi Sukma Dewata Date: Wed, 30 Jan 2013 13:26:55 -0500 Subject: Session support on CLI. The CLI has been modified to support executing multiple commands through the same session. A new 'connect' command has been added to establish the session. A new 'disconnect' command has been added to destroy the session. This way it's no longer necessary to specify the authentication info in each commands: pki connect pki user-find pki user-show caadmin pki disconnect The old way of specifying the authentication info in each command will continue to work, but the commands will be executed in separate sessions: pki user-find pki user-show caadmin Ticket #474 --- .../com/netscape/cmstools/cli/DisconnectCLI.java | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 base/java-tools/src/com/netscape/cmstools/cli/DisconnectCLI.java (limited to 'base/java-tools/src/com/netscape/cmstools/cli/DisconnectCLI.java') diff --git a/base/java-tools/src/com/netscape/cmstools/cli/DisconnectCLI.java b/base/java-tools/src/com/netscape/cmstools/cli/DisconnectCLI.java new file mode 100644 index 000000000..6d57d7f33 --- /dev/null +++ b/base/java-tools/src/com/netscape/cmstools/cli/DisconnectCLI.java @@ -0,0 +1,40 @@ +// --- BEGIN COPYRIGHT BLOCK --- +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; version 2 of the License. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License along +// with this program; if not, write to the Free Software Foundation, Inc., +// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +// +// (C) 2013 Red Hat, Inc. +// All rights reserved. +// --- END COPYRIGHT BLOCK --- + +package com.netscape.cmstools.cli; + + +/** + * @author Endi S. Dewata + */ +public class DisconnectCLI extends CLI { + + public MainCLI parent; + + public DisconnectCLI(MainCLI parent) { + super("disconnect", "Disconnect from PKI server"); + this.parent = parent; + } + + public void printHelp() { + } + + public void execute(String[] args) throws Exception { + parent.accountClient.logout(); + } +} -- cgit