Uses of Class
java.security.CodeSource
-
Packages that use CodeSource Package Description com.sun.security.auth Provides implementations ofPrincipal.java.net Provides the classes for implementing networking applications.java.security Provides the classes and interfaces for the security framework.javax.security.auth This package provides a framework for authentication and authorization. -
-
Uses of CodeSource in com.sun.security.auth
Methods in com.sun.security.auth with parameters of type CodeSource Modifier and Type Method Description PermissionCollectionPolicyFile. getPermissions(Subject subject, CodeSource codesource)Deprecated, for removal: This API element is subject to removal in a future version.Examines thisPolicyand returns the Permissions granted to the specifiedSubjectandCodeSource. -
Uses of CodeSource in java.net
Methods in java.net with parameters of type CodeSource Modifier and Type Method Description protected PermissionCollectionURLClassLoader. getPermissions(CodeSource codesource)Returns the permissions for the given codesource object. -
Uses of CodeSource in java.security
Methods in java.security that return CodeSource Modifier and Type Method Description CodeSourceProtectionDomain. getCodeSource()Returns the CodeSource of this domain.Methods in java.security with parameters of type CodeSource Modifier and Type Method Description protected Class<?>SecureClassLoader. defineClass(String name, byte[] b, int off, int len, CodeSource cs)Converts an array of bytes into an instance of class Class, with an optional CodeSource.protected Class<?>SecureClassLoader. defineClass(String name, ByteBuffer b, CodeSource cs)Converts aByteBufferinto an instance of classClass, with an optional CodeSource.protected PermissionCollectionPolicySpi. engineGetPermissions(CodeSource codesource)Return a PermissionCollection object containing the set of permissions granted to the specified CodeSource.PermissionCollectionPolicy. getPermissions(CodeSource codesource)Return a PermissionCollection object containing the set of permissions granted to the specified CodeSource.protected PermissionCollectionSecureClassLoader. getPermissions(CodeSource codesource)Returns the permissions for the given CodeSource object.booleanCodeSource. implies(CodeSource codesource)Returns true if this CodeSource object "implies" the specified CodeSource.Constructors in java.security with parameters of type CodeSource Constructor Description 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. -
Uses of CodeSource in javax.security.auth
Methods in javax.security.auth with parameters of type CodeSource Modifier and Type Method Description abstract PermissionCollectionPolicy. getPermissions(Subject subject, CodeSource cs)Deprecated.Retrieve the Permissions granted to the Principals associated with the specifiedCodeSource.
-