summaryrefslogtreecommitdiffstats
path: root/pki/base/silent/src/com/netscape/pkisilent/http/CertSelection.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/silent/src/com/netscape/pkisilent/http/CertSelection.java')
-rw-r--r--pki/base/silent/src/com/netscape/pkisilent/http/CertSelection.java31
1 files changed, 17 insertions, 14 deletions
diff --git a/pki/base/silent/src/com/netscape/pkisilent/http/CertSelection.java b/pki/base/silent/src/com/netscape/pkisilent/http/CertSelection.java
index ff541b6c6..078bb5882 100644
--- a/pki/base/silent/src/com/netscape/pkisilent/http/CertSelection.java
+++ b/pki/base/silent/src/com/netscape/pkisilent/http/CertSelection.java
@@ -1,5 +1,4 @@
package com.netscape.pkisilent.http;
-
// --- 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
@@ -22,24 +21,28 @@ import java.util.Vector;
import org.mozilla.jss.ssl.SSLClientCertificateSelectionCallback;
-public class CertSelection implements SSLClientCertificateSelectionCallback {
- // make the select() call to use this client cert
- public static String client_cert = null;
+public class CertSelection implements SSLClientCertificateSelectionCallback
+{
+
+ // make the select() call to use this client cert
+ public static String client_cert = null;
- public void setClientCert(String nickname) {
- client_cert = nickname;
- }
+ public void setClientCert(String nickname)
+ {
+ client_cert = nickname;
+ }
- public String select(@SuppressWarnings("rawtypes") Vector nicknames) {
+ public String select(@SuppressWarnings("rawtypes") Vector nicknames)
+ {
- // when this method is called by SSLSocket we get a vector
- // of nicknames to select similar to the way the browser presents
- // the list.
+ // when this method is called by SSLSocket we get a vector
+ // of nicknames to select similar to the way the browser presents
+ // the list.
- // We will just use the one thats set by setClientCert()
+ // We will just use the one thats set by setClientCert()
- return client_cert;
- }
+ return client_cert;
+ }
}; // end class