May 1998
Intermediate to advanced
469 pages
14h 57m
English
Class java.security.CodeSource
A code source encapsulates the location from which a particular class was loaded and the public keys (if any) that were used to sign the class. This information is used by a secure class loader to define a protection domain associated with the class; typically, the class loader is the only object that uses a code source.
public class java.security.CodeSource
extends java.lang.Object
implements java.io.Serializable {
// Constructors
public CodeSource(URL, Certificate[]);
// Instance Methods
public boolean equals(Object);
public final Certificate[] getCertificates();
public boolean implies();
public final URL getLocation();
public int hashCode();
public String toString();
}
SecureClassLoader, ProtectionDomain