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 Summary
ConstructorDescriptionManagementPermission
(String name) Constructs a ManagementPermission with the specified name.ManagementPermission
(String name, String actions) Constructs a new ManagementPermission object. -
Method Summary
Methods declared in class java.security.BasicPermission
equals, getActions, hashCode, implies, newPermissionCollection
Methods declared in class java.security.Permission
checkGuard, getName, toString
-
Constructor Details
-
ManagementPermission
Constructs a ManagementPermission with the specified name.- Parameters:
name
- Permission name. Must be either "monitor" or "control".- Throws:
NullPointerException
- ifname
isnull
.IllegalArgumentException
- ifname
is empty or invalid.
-
ManagementPermission
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
- ifname
isnull
.IllegalArgumentException
- ifname
is empty or if arguments are invalid.
-