Uses of Class
java.security.CodeSource

Packages that use CodeSource
java.security Provides the classes and interfaces for the security framework. 
 

Uses of CodeSource in java.security
 

Methods in java.security that return CodeSource
 CodeSource ProtectionDomain.getCodeSource()
          Returns the CodeSource of this domain.
 

Methods in java.security with parameters of type CodeSource
abstract  PermissionCollection Policy.getPermissions(CodeSource codesource)
          Evaluates the global policy and returns a PermissionCollection object specifying the set of permissions allowed for code from the specified code source.
 boolean CodeSource.implies(CodeSource codesource)
          Returns true if this CodeSource object "implies" the specified CodeSource.
 

Constructors in java.security with parameters of type CodeSource
ProtectionDomain(CodeSource codesource, PermissionCollection permissions)
          Creates a new ProtectionDomain with the given CodeSource and Permissions.
ProtectionDomain(CodeSource codesource, PermissionCollection permissions, ClassLoader classloader, Principal[] principals)
          Creates a new ProtectionDomain qualified by the given CodeSource, Permissions, ClassLoader and array of Principals.