1 11 package org.eclipse.osgi.internal.provisional.verifier; 12 13 import java.security.cert.Certificate ; 14 import java.util.Date ; 15 16 25 public interface CertificateChain { 26 32 public String getChain(); 33 34 38 public Certificate [] getCertificates(); 39 40 44 public Certificate getSigner(); 45 46 50 public Certificate getRoot(); 51 52 56 boolean isTrusted(); 57 58 63 public Date getSigningTime(); 64 } 65 | Popular Tags |