Class ReflectPermission
java.lang.Object
java.security.Permission
java.security.BasicPermission
java.lang.reflect.ReflectPermission
- All Implemented Interfaces:
Serializable
,Guard
The Permission class for reflective operations.
- API Note:
- This permission cannot be used for controlling access to resources as the Security Manager is no longer supported.
- Since:
- 1.2
- See Also:
-
Constructor Summary
ConstructorDescriptionReflectPermission
(String name) Constructs a ReflectPermission with the specified name.ReflectPermission
(String name, String actions) Constructs a ReflectPermission with the specified name and actions. -
Method Summary
Methods inherited from class java.security.BasicPermission
equals, getActions, hashCode, implies, newPermissionCollection
Methods inherited from class java.security.Permission
checkGuard, getName, toString
-
Constructor Details
-
ReflectPermission
Constructs a ReflectPermission with the specified name.- Parameters:
name
- the name of the ReflectPermission- Throws:
NullPointerException
- ifname
isnull
.IllegalArgumentException
- ifname
is empty.
-
ReflectPermission
Constructs a ReflectPermission with the specified name and actions. The actions should be null; they are ignored.- Parameters:
name
- the name of the ReflectPermissionactions
- should be null- Throws:
NullPointerException
- ifname
isnull
.IllegalArgumentException
- ifname
is empty.
-