1 7 8 package java.security; 9 10 import java.io.*; 11 import java.util.Date ; 12 13 48 @Deprecated  49 public interface Certificate { 50 51 61 public abstract Principal getGuarantor(); 62 63 69 public abstract Principal getPrincipal(); 70 71 78 public abstract PublicKey getPublicKey(); 79 80 96 public abstract void encode(OutputStream stream) 97 throws KeyException , IOException; 98 99 116 public abstract void decode(InputStream stream) 117 throws KeyException , IOException; 118 119 120 128 public abstract String getFormat(); 129 130 138 public String toString(boolean detailed); 139 } 140 | Popular Tags |