1 7 8 15 16 package javax.net.ssl; 17 18 import java.security.cert.*; 19 20 30 public interface X509TrustManager extends TrustManager 31 { 32 33 51 public void checkClientTrusted(X509Certificate[] chain, String authType) 52 throws CertificateException; 53 54 77 public void checkServerTrusted(X509Certificate[] chain, String authType) 78 throws CertificateException; 79 80 87 public X509Certificate[] getAcceptedIssuers(); 88 } 89 | Popular Tags |