1 11 package org.eclipse.update.core; 12 13 32 public interface IVerificationResult { 33 34 40 public static final int TYPE_ENTRY_NOT_SIGNED = 1; 41 42 47 public static final int TYPE_ENTRY_CORRUPTED = 2; 48 49 54 public static final int TYPE_ENTRY_SIGNED_RECOGNIZED = 3; 55 56 61 public static final int TYPE_ENTRY_SIGNED_UNRECOGNIZED = 5; 62 63 68 public static final int UNKNOWN_ERROR = 6; 69 70 75 public static final int VERIFICATION_CANCELLED = 7; 76 77 83 public static final int TYPE_ENTRY_UNRECOGNIZED = 8; 84 85 91 public ContentReference getContentReference(); 92 93 99 public IFeature getFeature(); 100 101 107 public int getVerificationCode(); 108 109 115 public Exception getVerificationException(); 116 117 123 public String getText(); 124 125 131 public String getSignerInfo(); 132 133 140 public String getVerifierInfo(); 141 142 150 public boolean isFeatureVerification(); 151 152 160 public boolean alreadySeen(); 161 } 162 | Popular Tags |