Class ManagementPermission

All Implemented Interfaces:
Serializable, Guard

public final class ManagementPermission extends BasicPermission
This class is for management permissions.
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

    • ManagementPermission

      public ManagementPermission(String name)
      Constructs a ManagementPermission with the specified name.
      Parameters:
      name - Permission name. Must be either "monitor" or "control".
      Throws:
      NullPointerException - if name is null.
      IllegalArgumentException - if name is empty or invalid.
    • ManagementPermission

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