Uses of Class
java.security.Permission
Packages that use Permission
Package
Description
This is the core package of the Java Debug
 Interface (JDI), it defines mirrors for values, types, and the target
 VirtualMachine itself - as well bootstrapping facilities.
This package defines classes and interfaces for the JDK extensions
 to the GSS-API.
Provides the API to attach to a Java virtual machine.
Contains all of the classes for creating user interfaces and for painting
 graphics and images.
Provides for system input and output through data streams,
 serialization and the file system.
Provides classes that are fundamental to the design of the Java
 programming language.
Provides the management interfaces for monitoring and management of the
Java virtual machine and other components in the Java runtime.
Provides classes and interfaces for obtaining reflective information about
 classes and objects.
Provides the classes for implementing networking applications.
Defines interfaces and classes for the Java virtual machine to access files,
 file attributes, and file systems.
Provides the classes and interfaces for the security framework.
Provides the API for accessing and processing data stored in a
 data source (usually a relational database) using the
 Java programming language.
Contains the collections framework, some internationalization support classes,
 a service loader, properties, random number generation, string parsing
 and scanning classes, base64 encoding and decoding, a bit array, and
 several miscellaneous utility classes.
Provides the classes and interfaces of
 the Java 2 platform's core logging facilities.
Provides the core classes for the Java Management Extensions.
Interfaces for remote access to
        JMX MBean servers.
Provides classes for the secure socket package.
This package provides a framework for authentication and
 authorization.
This package contains utility classes related to the Kerberos network
 authentication protocol.
Java™ Smart Card I/O API.
Provides interfaces and classes for capture, processing, and playback of
 sampled audio data.
This package provides classes to create events and control Flight Recorder.
Platform specific socket options for the 
java.net and java.nio.channels
 socket classes.- 
Uses of Permission in com.sun.jdiSubclasses of Permission in com.sun.jdiModifier and TypeClassDescriptionclassTheJDIPermissionclass represents access rights to theVirtualMachineManager.
- 
Uses of Permission in com.sun.security.jgssSubclasses of Permission in com.sun.security.jgssModifier and TypeClassDescriptionclassThis class is used to protect various attributes of an established GSS security context that can be accessed using theExtendedGSSContext.inquireSecContext(com.sun.security.jgss.InquireType)method.
- 
Uses of Permission in com.sun.tools.attachSubclasses of Permission in com.sun.tools.attachModifier and TypeClassDescriptionclassWhen aSecurityManagerset, this is the permission which will be checked when code invokesVirtualMachine.attachto attach to a target virtual machine.
- 
Uses of Permission in java.awtSubclasses of Permission in java.awt
- 
Uses of Permission in java.ioSubclasses of Permission in java.ioModifier and TypeClassDescriptionclassThis class represents access to a file or directory.classThis class is for Serializable permissions.Methods in java.io with parameters of type PermissionModifier and TypeMethodDescriptionbooleanFilePermission.implies(Permission p)Checks if this FilePermission object "implies" the specified permission.
- 
Uses of Permission in java.langSubclasses of Permission in java.langMethods in java.lang with parameters of type PermissionModifier and TypeMethodDescriptionvoidSecurityManager.checkPermission(Permission perm)Throws aSecurityExceptionif the requested access, specified by the given permission, is not permitted based on the security policy currently in effect.voidSecurityManager.checkPermission(Permission perm, Object context)Throws aSecurityExceptionif the specified security context is denied access to the resource specified by the given permission.
- 
Uses of Permission in java.lang.managementSubclasses of Permission in java.lang.managementModifier and TypeClassDescriptionclassThe permission which the SecurityManager will check when code that is running with a SecurityManager calls methods defined in the management interface for the Java platform.
- 
Uses of Permission in java.lang.reflectSubclasses of Permission in java.lang.reflectModifier and TypeClassDescriptionclassThe Permission class for reflective operations.
- 
Uses of Permission in java.netSubclasses of Permission in java.netModifier and TypeClassDescriptionclassThis class is for various network permissions.classThis class represents access to a network via sockets.classRepresents permission to access a resource or set of resources defined by a given url, and for a given set of user-settable request methods and request headers.Methods in java.net that return PermissionModifier and TypeMethodDescriptionHttpURLConnection.getPermission()Returns aSocketPermissionobject representing the permission necessary to connect to the destination host and port.URLConnection.getPermission()Returns a permission object representing the permission necessary to make the connection represented by this object.Methods in java.net with parameters of type PermissionModifier and TypeMethodDescriptionbooleanSocketPermission.implies(Permission p)Checks if this socket permission object "implies" the specified permission.booleanURLPermission.implies(Permission p)Checks if this URLPermission implies the given permission.
- 
Uses of Permission in java.nio.fileSubclasses of Permission in java.nio.fileModifier and TypeClassDescriptionclassThePermissionclass for link creation operations.
- 
Uses of Permission in java.securitySubclasses of Permission in java.securityModifier and TypeClassDescriptionclassThe AllPermission is a permission that implies all other permissions.classThe BasicPermission class extends the Permission class, and can be used as the base class for permissions that want to follow the same naming convention as BasicPermission.classThis class is for security permissions.classThe UnresolvedPermission class is used to hold Permissions that were "unresolved" when the Policy was initialized.Methods in java.security that return PermissionModifier and TypeMethodDescriptionAccessControlException.getPermission()Gets the Permission object associated with this exception, or null if there was no corresponding Permission object.Methods in java.security that return types with arguments of type PermissionModifier and TypeMethodDescriptionabstract Enumeration<Permission>PermissionCollection.elements()Returns an enumeration of all the Permission objects in the collection.Permissions.elements()Returns an enumeration of all the Permission objects in all the PermissionCollections in this Permissions object.PermissionCollection.elementsAsStream()Returns a stream of all the Permission objects in the collection.Methods in java.security with parameters of type PermissionModifier and TypeMethodDescriptionabstract voidPermissionCollection.add(Permission permission)Adds a permission object to the current collection of permission objects.voidPermissions.add(Permission permission)Adds a permission object to the PermissionCollection for the class the permission belongs to.voidAccessControlContext.checkPermission(Permission perm)Determines whether the access request indicated by the specified permission should be allowed or denied, based on the security policy currently in effect, and the context in this object.static voidAccessController.checkPermission(Permission perm)Determines whether the access request indicated by the specified permission should be allowed or denied, based on the current AccessControlContext and security policy.static <T> TAccessController.doPrivileged(PrivilegedAction<T> action, AccessControlContext context, Permission... perms)Performs the specifiedPrivilegedActionwith privileges enabled and restricted by the specifiedAccessControlContextand with a privilege scope limited by specifiedPermissionarguments.static <T> TAccessController.doPrivileged(PrivilegedExceptionAction<T> action, AccessControlContext context, Permission... perms)Performs the specifiedPrivilegedExceptionActionwith privileges enabled and restricted by the specifiedAccessControlContextand with a privilege scope limited by specifiedPermissionarguments.static <T> TAccessController.doPrivilegedWithCombiner(PrivilegedAction<T> action, AccessControlContext context, Permission... perms)Performs the specifiedPrivilegedActionwith privileges enabled and restricted by the specifiedAccessControlContextand with a privilege scope limited by specifiedPermissionarguments.static <T> TAccessController.doPrivilegedWithCombiner(PrivilegedExceptionAction<T> action, AccessControlContext context, Permission... perms)Performs the specifiedPrivilegedExceptionActionwith privileges enabled and restricted by the specifiedAccessControlContextand with a privilege scope limited by specifiedPermissionarguments.protected abstract booleanPolicySpi.engineImplies(ProtectionDomain domain, Permission permission)Check whether the policy has granted a Permission to a ProtectionDomain.booleanAllPermission.implies(Permission p)Checks if the specified permission is "implied" by this object.booleanBasicPermission.implies(Permission p)Checks if the specified permission is "implied" by this object.abstract booleanPermission.implies(Permission permission)Checks if the specified permission's actions are "implied by" this object's actions.abstract booleanPermissionCollection.implies(Permission permission)Checks to see if the specified permission is implied by the collection of Permission objects held in this PermissionCollection.booleanPermissions.implies(Permission permission)Checks to see if this object's PermissionCollection for permissions of the specified permission's class implies the permissions expressed in the permission object.booleanPolicy.implies(ProtectionDomain domain, Permission permission)Evaluates the global policy for the permissions granted to the ProtectionDomain and tests whether the permission is granted.booleanProtectionDomain.implies(Permission perm)Check and see if this ProtectionDomain implies the permissions expressed in the Permission object.booleanUnresolvedPermission.implies(Permission p)This method always returns false for unresolved permissions.Constructors in java.security with parameters of type PermissionModifierConstructorDescriptionConstructs anAccessControlExceptionwith the specified, detailed message, and the requested permission that caused the exception.
- 
Uses of Permission in java.sqlSubclasses of Permission in java.sqlModifier and TypeClassDescriptionclassThe permission for which theSecurityManagerwill check when code that is running an application with aSecurityManagerenabled, calls theDriverManager.deregisterDrivermethod,DriverManager.setLogWritermethod,DriverManager.setLogStream(deprecated) method,SyncFactory.setJNDIContextmethod,SyncFactory.setLoggermethod,Connection.setNetworkTimeoutmethod, or theConnection.abortmethod.
- 
Uses of Permission in java.utilSubclasses of Permission in java.utilModifier and TypeClassDescriptionclassThis class is for property permissions.Methods in java.util with parameters of type PermissionModifier and TypeMethodDescriptionbooleanPropertyPermission.implies(Permission p)Checks if this PropertyPermission object "implies" the specified permission.
- 
Uses of Permission in java.util.loggingSubclasses of Permission in java.util.loggingModifier and TypeClassDescriptionclassThe permission which the SecurityManager will check when code that is running with a SecurityManager calls one of the logging control methods (such as Logger.setLevel).
- 
Uses of Permission in javax.managementSubclasses of Permission in javax.managementModifier and TypeClassDescriptionclassPermission controlling access to MBeanServer operations.classA Permission to perform actions related to MBeanServers.classThis permission represents "trust" in a signer or codebase.Methods in javax.management with parameters of type PermissionModifier and TypeMethodDescriptionbooleanMBeanPermission.implies(Permission p)Checks if this MBeanPermission object "implies" the specified permission.booleanMBeanServerPermission.implies(Permission p)Checks if this MBeanServerPermission object "implies" the specified permission.
- 
Uses of Permission in javax.management.remoteSubclasses of Permission in javax.management.remoteModifier and TypeClassDescriptionclassPermission required by an authentication identity to perform operations on behalf of an authorization identity.
- 
Uses of Permission in javax.net.sslSubclasses of Permission in javax.net.sslModifier and TypeClassDescriptionclassThis class is for various network permissions.
- 
Uses of Permission in javax.security.authSubclasses of Permission in javax.security.authModifier and TypeClassDescriptionclassThis class is for authentication permissions.classThis class is used to protect access to private Credentials belonging to a particularSubject.Methods in javax.security.auth with parameters of type PermissionModifier and TypeMethodDescriptionbooleanPrivateCredentialPermission.implies(Permission p)Checks if thisPrivateCredentialPermissionimplies the specifiedPermission.
- 
Uses of Permission in javax.security.auth.kerberosSubclasses of Permission in javax.security.auth.kerberosModifier and TypeClassDescriptionclassThis class is used to restrict the usage of the Kerberos delegation model, ie: forwardable and proxiable tickets.classThis class is used to protect Kerberos services and the credentials necessary to access those services.Methods in javax.security.auth.kerberos with parameters of type PermissionModifier and TypeMethodDescriptionbooleanDelegationPermission.implies(Permission p)Checks if this Kerberos delegation permission object "implies" the specified permission.booleanServicePermission.implies(Permission p)Checks if this Kerberos service permission object "implies" the specified permission.
- 
Uses of Permission in javax.smartcardioSubclasses of Permission in javax.smartcardioMethods in javax.smartcardio with parameters of type PermissionModifier and TypeMethodDescriptionbooleanCardPermission.implies(Permission permission)Checks if this CardPermission object implies the specified permission.
- 
Uses of Permission in javax.sound.sampledSubclasses of Permission in javax.sound.sampledModifier and TypeClassDescriptionclassTheAudioPermissionclass represents access rights to the audio system resources.
- 
Uses of Permission in jdk.jfrSubclasses of Permission in jdk.jfrModifier and TypeClassDescriptionclassPermission for controlling access to Flight Recorder.
- 
Uses of Permission in jdk.netSubclasses of Permission in jdk.netModifier and TypeClassDescriptionclassRepresents permission to access the extended networking capabilities defined in the jdk.net package.