Package eu.emi.security.authn.x509
Class CommonX509TrustManager
- java.lang.Object
-
- eu.emi.security.authn.x509.CommonX509TrustManager
-
- All Implemented Interfaces:
TrustManager
,X509TrustManager
public class CommonX509TrustManager extends Object implements X509TrustManager
This class wraps X509CertChainValidator so it can be easily used in the standard Java SSL API.- Author:
- K. Benedyczak
-
-
Constructor Summary
Constructors Constructor Description CommonX509TrustManager(X509CertChainValidator validator)
The constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
checkClientTrusted(X509Certificate[] chain, String authType)
void
checkServerTrusted(X509Certificate[] chain, String authType)
X509Certificate[]
getAcceptedIssuers()
-
-
-
Constructor Detail
-
CommonX509TrustManager
public CommonX509TrustManager(X509CertChainValidator validator)
The constructor.- Parameters:
validator
- wrapped implementation that performs an actual validation
-
-
Method Detail
-
checkClientTrusted
public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException
- Specified by:
checkClientTrusted
in interfaceX509TrustManager
- Throws:
CertificateException
-
checkServerTrusted
public void checkServerTrusted(X509Certificate[] chain, String authType) throws CertificateException
- Specified by:
checkServerTrusted
in interfaceX509TrustManager
- Throws:
CertificateException
-
getAcceptedIssuers
public X509Certificate[] getAcceptedIssuers()
- Specified by:
getAcceptedIssuers
in interfaceX509TrustManager
-
-