1 7 8 package java.security.cert; 9 10 import java.util.Collection ; 11 import java.util.Set ; 12 13 73 public abstract class PKIXCertPathChecker implements Cloneable { 74 75 78 protected PKIXCertPathChecker() {} 79 80 97 public abstract void init(boolean forward) 98 throws CertPathValidatorException ; 99 100 109 public abstract boolean isForwardCheckingSupported(); 110 111 129 public abstract Set <String > getSupportedExtensions(); 130 131 144 public abstract void check(Certificate cert, 145 Collection <String > unresolvedCritExts) 146 throws CertPathValidatorException ; 147 148 156 public Object clone() { 157 try { 158 return super.clone(); 159 } catch (CloneNotSupportedException e) { 160 161 throw new InternalError (e.toString()); 162 } 163 } 164 } 165 | Popular Tags |