- java.lang.Object
-
- java.security.Permission
-
- java.security.BasicPermission
-
- com.sun.jdi.JDIPermission
-
- All Implemented Interfaces:
-
Serializable
,Guard
public final class JDIPermission extends BasicPermission
JDIPermission
类代表对VirtualMachineManager
访问权限。 这是SecurityManager将在使用SecurityManager运行的代码请求访问VirtualMachineManager时检查的权限,如Java平台的Java调试接口(JDI)中所定义。一个
JDIPermission
对象包含一个名称(也称为“目标名称”),但没有动作列表; 你有指定的权限,或者你没有。下表提供了许可允许的简要说明,并讨论了授予代码许可的风险。
Table shows permission target name, what the permission allows, and associated risks Permission Target Name What the Permission Allows Risks of Allowing this Permission virtualMachineManager Ability to inspect and modify the JDI objects in theVirtualMachineManager
This allows an attacker to control theVirtualMachineManager
and cause the system to misbehave.程序员通常不直接创建JDIPermission对象。 相反,它们是基于阅读安全策略文件的安全策略代码创建的。
- 从以下版本开始:
- 1.5
- 另请参见:
-
Bootstrap
,BasicPermission
,Permission
,Permissions
,PermissionCollection
,SecurityManager
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 JDIPermission(String name)
JDIPermission
类代表对VirtualMachineManager
访问权限JDIPermission(String name, String actions)
构造一个新的JDIPermission对象。
-
方法摘要
-
Methods inherited from class java.security.BasicPermission
equals, getActions, hashCode, implies, newPermissionCollection
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.security.Permission
checkGuard, getName, toString
-
-
-
-
构造方法详细信息
-
JDIPermission
public JDIPermission(String name)
JDIPermission
类代表对VirtualMachineManager
访问权限- 参数
-
name
- 权限名称。 必须是“virtualMachineManager”。 - 异常
-
IllegalArgumentException
- 如果name参数无效。
-
JDIPermission
public JDIPermission(String name, String actions) throws IllegalArgumentException
构造一个新的JDIPermission对象。- 参数
-
name
- 权限名称。 必须是“virtualMachineManager”。 -
actions
- 必须为null或空字符串。 - 异常
-
IllegalArgumentException
- if arguments are invalid.
-
-