Class JDIPermission

All Implemented Interfaces:
Serializable, Guard

public final class JDIPermission extends BasicPermission
A JDIPermission object contains a name (also referred to as a "target name") but no actions list; you either have the named permission or you don't.
API Note:
This permission cannot be used for controlling access to resources as the Security Manager is no longer supported.
Since:
1.5
See Also:
  • Constructor Details

    • JDIPermission

      public JDIPermission(String name)
      The JDIPermission class represents access rights to the VirtualMachineManager
      Parameters:
      name - Permission name. Must be "virtualMachineManager".
      Throws:
      IllegalArgumentException - if the name argument is invalid.
    • JDIPermission

      public JDIPermission(String name, String actions) throws IllegalArgumentException
      Constructs a new JDIPermission object.
      Parameters:
      name - Permission name. Must be "virtualMachineManager".
      actions - Must be either null or the empty string.
      Throws:
      IllegalArgumentException - if arguments are invalid.