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 SummaryConstructorsConstructorDescriptionReflectPermission(String name) Constructs a ReflectPermission with the specified name.ReflectPermission(String name, String actions) Constructs a ReflectPermission with the specified name and actions.
- 
Method SummaryMethods declared in class java.security.BasicPermissionequals, getActions, hashCode, implies, newPermissionCollectionMethods declared in class java.security.PermissioncheckGuard, getName, toString
- 
Constructor Details- 
ReflectPermissionConstructs a ReflectPermission with the specified name.- Parameters:
- name- the name of the ReflectPermission
- Throws:
- NullPointerException- if- nameis- null.
- IllegalArgumentException- if- nameis empty.
 
- 
ReflectPermissionConstructs a ReflectPermission with the specified name and actions. The actions should be null; they are ignored.- Parameters:
- name- the name of the ReflectPermission
- actions- should be null
- Throws:
- NullPointerException- if- nameis- null.
- IllegalArgumentException- if- nameis empty.
 
 
-