1 4 7 package javax.xml.crypto.dsig.keyinfo; 8 9 import javax.xml.crypto.XMLStructure; 10 import java.security.cert.X509CRL ; 11 import java.util.List ; 12 13 59 public interface X509Data extends XMLStructure { 61 62 69 final static String TYPE = "http://www.w3.org/2000/09/xmldsig#X509Data"; 70 71 77 final static String RAW_X509_CERTIFICATE_TYPE = 78 "http://www.w3.org/2000/09/xmldsig#rawX509Certificate"; 79 80 91 List getContent(); 92 } 93 | Popular Tags |