Uses of Class
java.security.CodeSource
Package
Description
Provides the classes for implementing networking applications.
Provides the classes and interfaces for the security framework.
-
Uses of CodeSource in java.net
Modifier and TypeMethodDescriptionprotected PermissionCollection
URLClassLoader.getPermissions
(CodeSource codesource) Returns the permissions for the given codesource object. -
Uses of CodeSource in java.security
Modifier and TypeMethodDescriptionfinal CodeSource
ProtectionDomain.getCodeSource()
Returns theCodeSource
of this domain.Modifier and TypeMethodDescriptionprotected final Class
<?> SecureClassLoader.defineClass
(String name, byte[] b, int off, int len, CodeSource cs) Converts an array of bytes into an instance of classClass
, with an optional CodeSource.protected final Class
<?> SecureClassLoader.defineClass
(String name, ByteBuffer b, CodeSource cs) Converts aByteBuffer
into an instance of classClass
, with an optional CodeSource.protected PermissionCollection
PolicySpi.engineGetPermissions
(CodeSource codesource) Deprecated, for removal: This API element is subject to removal in a future version.Return a PermissionCollection object containing the set of permissions granted to the specified CodeSource.Policy.getPermissions
(CodeSource codesource) Deprecated, for removal: This API element is subject to removal in a future version.Return a PermissionCollection object containing the set of permissions granted to the specified CodeSource.protected PermissionCollection
SecureClassLoader.getPermissions
(CodeSource codesource) Returns the permissions for the given CodeSource object.boolean
CodeSource.implies
(CodeSource codesource) Returns true if thisCodeSource
object "implies" the specifiedCodeSource
.ModifierConstructorDescriptionProtectionDomain
(CodeSource codesource, PermissionCollection permissions) Creates a newProtectionDomain
with the givenCodeSource
and permissions.ProtectionDomain
(CodeSource codesource, PermissionCollection permissions, ClassLoader classloader, Principal[] principals) Creates a newProtectionDomain
qualified by the givenCodeSource
, permissions,ClassLoader
and array of principals.