From 4300459bff057ba50093f735ee9289868e258215 Mon Sep 17 00:00:00 2001 From: Endi Sukma Dewata Date: Mon, 8 Oct 2012 16:52:53 -0400 Subject: Added PKIConnection. The code in PKIClient has been refactored into PKIConnection such that a single connection object can be used by several REST clients. The PKIClient will remain the base class for all REST clients. Ticket #357 --- base/common/src/com/netscape/certsrv/user/UserClient.java | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'base/common/src/com/netscape/certsrv/user') diff --git a/base/common/src/com/netscape/certsrv/user/UserClient.java b/base/common/src/com/netscape/certsrv/user/UserClient.java index 95960e53f..23136200d 100644 --- a/base/common/src/com/netscape/certsrv/user/UserClient.java +++ b/base/common/src/com/netscape/certsrv/user/UserClient.java @@ -23,6 +23,7 @@ import org.jboss.resteasy.client.ClientResponse; import com.netscape.certsrv.client.ClientConfig; import com.netscape.certsrv.client.PKIClient; +import com.netscape.certsrv.client.PKIConnection; /** * @author Endi S. Dewata @@ -32,9 +33,17 @@ public class UserClient extends PKIClient { public UserResource userClient; public UserCertResource userCertClient; + public UserClient(PKIConnection connection) throws URISyntaxException { + super(connection); + init(); + } + public UserClient(ClientConfig config) throws URISyntaxException { super(config); + init(); + } + public void init() throws URISyntaxException { userClient = createProxy(UserResource.class); userCertClient = createProxy(UserCertResource.class); } -- cgit