Class ManagementPermission
java.lang.Object
java.security.Permission
java.security.BasicPermission
java.lang.management.ManagementPermission
- All Implemented Interfaces:
- Serializable,- Guard
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 SummaryConstructorsConstructorDescriptionManagementPermission(String name) Constructs a ManagementPermission with the specified name.ManagementPermission(String name, String actions) Constructs a new ManagementPermission object.
- 
Method SummaryMethods declared in class java.security.BasicPermissionequals, getActions, hashCode, implies, newPermissionCollectionMethods declared in class java.security.PermissioncheckGuard, getName, toString
- 
Constructor Details- 
ManagementPermissionConstructs a ManagementPermission with the specified name.- Parameters:
- name- Permission name. Must be either "monitor" or "control".
- Throws:
- NullPointerException- if- nameis- null.
- IllegalArgumentException- if- nameis empty or invalid.
 
- 
ManagementPermissionConstructs 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- nameis- null.
- IllegalArgumentException- if- nameis empty or if arguments are invalid.
 
 
-