Package com.atlassian.bamboo.xmpp
Class OpenTrustManager
- java.lang.Object
-
- com.atlassian.bamboo.xmpp.OpenTrustManager
-
- All Implemented Interfaces:
TrustManager
,X509TrustManager
public class OpenTrustManager extends Object implements X509TrustManager
Also written by the jive guys from an older version of Smack.
-
-
Constructor Summary
Constructors Constructor Description OpenTrustManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
checkClientTrusted(X509Certificate[] arg0, String arg1)
void
checkServerTrusted(X509Certificate[] arg0, String arg1)
X509Certificate[]
getAcceptedIssuers()
-
-
-
Method Detail
-
getAcceptedIssuers
public X509Certificate[] getAcceptedIssuers()
- Specified by:
getAcceptedIssuers
in interfaceX509TrustManager
-
checkClientTrusted
public void checkClientTrusted(X509Certificate[] arg0, String arg1) throws CertificateException
- Specified by:
checkClientTrusted
in interfaceX509TrustManager
- Throws:
CertificateException
-
checkServerTrusted
public void checkServerTrusted(X509Certificate[] arg0, String arg1) throws CertificateException
- Specified by:
checkServerTrusted
in interfaceX509TrustManager
- Throws:
CertificateException
-
-