Class AttachPermission
java.lang.Object
java.security.Permission
java.security.BasicPermission
com.sun.tools.attach.AttachPermission
- All Implemented Interfaces:
Serializable
,Guard
An
AttachPermission
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.6
- See Also:
-
Constructor Summary
ConstructorDescriptionAttachPermission
(String name) Constructs a new AttachPermission object.AttachPermission
(String name, String actions) Constructs a new AttachPermission 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
-
AttachPermission
Constructs a new AttachPermission object.- Parameters:
name
- Permission name. Must be either "attachVirtualMachine", or "createAttachProvider".- Throws:
NullPointerException
- if name isnull
.IllegalArgumentException
- if the name is invalid.
-
AttachPermission
Constructs a new AttachPermission object.- Parameters:
name
- Permission name. Must be either "attachVirtualMachine", or "createAttachProvider".actions
- Not used and should benull
, or the empty string.- Throws:
NullPointerException
- if name isnull
.IllegalArgumentException
- if arguments are invalid.
-