summaryrefslogtreecommitdiffstats
path: root/base/java-tools/src/com/netscape/cmstools/client
Commit message (Collapse)AuthorAgeFilesLines
* Fix eclipse warnings.Ade Lee2014-02-191-2/+0
|
* Updated pki CLI man page.Endi S. Dewata2013-11-191-2/+2
| | | | | The man page for pki CLI has been updated to include the commands for managing the client security database.
* Fixed client-cert-import command.Endi S. Dewata2013-11-191-9/+45
| | | | | | | | | | | | Previously client-cert-import uses a JSS method that calls NSS function PK11_ImportDERCertForKey(). To import certificate without key it should use PK11_ImportCert but it's only available via certutil. So for now the client-cert-import has been modified to call certutil until the interface is added to JSS. The MainCLI has been modified not to call CryptoManager.initialize() to avoid locking up the security database while importing the certificate using certutil.
* Added client-init command.Endi S. Dewata2013-11-152-0/+120
| | | | | A new CLI command has been added to simplify the creation of client certificate database.
* Renamed CLI commands.Endi S. Dewata2013-11-011-1/+1
| | | | | | | | The following commands have been renamed for consistency: * client-cert-remove -> client-cert->del * group-member-remove -> group-member-del * user-cert-remove -> user-cert-del * user-membership-remove -> user-membership-del
* Renamed client commands.Endi S. Dewata2013-10-254-17/+17
| | | | | The client-{action}-cert commands have been renamed into client-cert-{action} for consistency.
* Refactored CLI framework.Endi S. Dewata2013-10-011-24/+1
| | | | | The CLI framework has been modified to remove duplicate code in various CLI modules.
* Refactored CLI framework.Endi S. Dewata2013-08-234-46/+38
| | | | | | | | | | Some common CLI methods and attributes have been refactored into the CLI base class. A new SubsystemCLI class was added as the base for subsystem CLI modules. The MainCLI was modified such that it will only perform authentication if the subsystem is specified in the server URI. If no subsystem is specified in the URI, the authentication will be done by the subsystem CLI module. Ticket #701
* Added method to download CA cert chain from admin interface.Endi Sukma Dewata2013-04-261-10/+18
| | | | | | | | A new method has been added to the PKIClient to download the CA certificate chain from an alternative location including the admin interface. Ticket #491
* Added Client CLI module.Endi Sukma Dewata2013-04-254-0/+362
A new CLI module has been added to manage certificates in client security database. Ticket #491