summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/tks
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2013-08-22 01:48:23 -0400
committerEndi S. Dewata <edewata@redhat.com>2013-08-24 01:39:49 -0400
commit99c3fc97f3f1c49ffef010896765b716e8359e50 (patch)
tree7cada88bb2ae5ec7553695cfcaa483fc9f794c2e /base/common/src/com/netscape/certsrv/tks
parentd2e98fe9aab32097b2928c3f5787b6ca16c9f7d0 (diff)
downloadpki-99c3fc97f3f1c49ffef010896765b716e8359e50.tar.gz
pki-99c3fc97f3f1c49ffef010896765b716e8359e50.tar.xz
pki-99c3fc97f3f1c49ffef010896765b716e8359e50.zip
Added subsystem group commands.
The group client and CLI has been added into each subsystem (e.g. ca-group-*) while keeping the original command for backward compatibility. Ticket #652
Diffstat (limited to 'base/common/src/com/netscape/certsrv/tks')
-rw-r--r--base/common/src/com/netscape/certsrv/tks/TKSClient.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/base/common/src/com/netscape/certsrv/tks/TKSClient.java b/base/common/src/com/netscape/certsrv/tks/TKSClient.java
index ff926cb28..baecf8ddb 100644
--- a/base/common/src/com/netscape/certsrv/tks/TKSClient.java
+++ b/base/common/src/com/netscape/certsrv/tks/TKSClient.java
@@ -21,6 +21,7 @@ import java.net.URISyntaxException;
import com.netscape.certsrv.client.PKIClient;
import com.netscape.certsrv.client.SubsystemClient;
+import com.netscape.certsrv.group.GroupClient;
import com.netscape.certsrv.user.UserClient;
public class TKSClient extends SubsystemClient {
@@ -31,6 +32,7 @@ public class TKSClient extends SubsystemClient {
}
public void init() throws URISyntaxException {
+ addClient(new GroupClient(client, name));
addClient(new UserClient(client, name));
}
}