Name
CodeSource
Synopsis
This class represents the source of a
Java class, as defined by the URL from which the class was loaded and
the set of digital signatures attached to the class. A
CodeSource
object is created by specifying a
java.net.URL
and an array of
java.security.cert.Certificate
objects. In Java
5.0, the class has been generalized to accept an array of
CodeSigner
objects instead of
Certificate
objects. Only applications that create
custom ClassLoader
objects should ever need to use
or subclass this class.
When a CodeSource
represents a specific piece of Java code, it includes a fully
qualified URL and the actual set of certificates used to sign the
code. When a CodeSource
object defines a
ProtectionDomain
, however, the URL may include
wildcards, and the array of certificates is a minimum required set of
signatures. The implies( )
method of such a
CodeSource
tests whether a particular Java class
comes from a matching URL and has the required set of signatures.
Figure 14-6. java.security.CodeSource
public class CodeSource implements Serializable { // Public Constructors 5.0 public CodeSource(java.net.URL url, CodeSigner[ ] signers); public CodeSource(java.net.URL url, java.security.cert. Certificate[ ] certs); // Public Instance Methods public final java.security.cert.Certificate[ ] getCertificates( ); 5.0 public final CodeSigner[ ] getCodeSigners( ); public final java.net.URL ...
Get Java in a Nutshell, 5th Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.