Lines Matching defs:CodeSource

48 public class CodeSource implements java.io.Serializable {
76 * Constructs a CodeSource and associates it with the specified
84 public CodeSource(URL url, java.security.cert.Certificate certs[]) {
94 * Constructs a CodeSource and associates it with the specified
103 public CodeSource(URL url, CodeSigner[] signers) {
127 * object. Two CodeSource objects are considered equal if their
141 if (!(obj instanceof CodeSource))
144 CodeSource cs = (CodeSource) obj;
160 * Returns the location associated with this CodeSource.
171 * Returns the certificates associated with this CodeSource.
173 * If this CodeSource object was created using the
174 * {@link #CodeSource(URL url, CodeSigner[] signers)}
206 * Returns the code signers associated with this CodeSource.
208 * If this CodeSource object was created using the
209 * {@link #CodeSource(URL url, Certificate[] certs)}
233 * Returns true if this CodeSource object "implies" the specified CodeSource.
292 * Note that if this CodeSource has a null location and a null
293 * certificate chain, then it implies every other CodeSource.
295 * @param codesource CodeSource to compare against.
301 public boolean implies(CodeSource codesource)
311 * CodeSource are also in <i>that</i>.
313 * @param that the CodeSource to check against.
317 private boolean matchCerts(CodeSource that, boolean strict)
368 * Returns true if two CodeSource's have the "same" location.
370 * @param that CodeSource to compare against
372 private boolean matchLocation(CodeSource that)
453 * Returns a string describing this CodeSource, telling its
456 * @return information about this CodeSource.