- java.lang.Object
-
- java.security.Permission
-
- java.security.BasicPermission
-
- java.lang.reflect.ReflectPermission
-
- All Implemented Interfaces:
- Serializable, Guard
public final class ReflectPermission extends BasicPermission
The Permission class for reflective operations. A ReflectPermission is a named permission and has no actions. The only name currently defined issuppressAccessChecks
, which allows suppressing the standard Java language access checks -- for public, default (package) access, protected, and private members -- performed by reflected objects at their point of use.The following table provides a summary description of what the permission allows, and discusses the risks of granting code the permission.
Permission Target Name What the Permission Allows Risks of Allowing this Permission suppressAccessChecks ability to access fields and invoke methods in a class. Note that this includes not only public, but protected and private fields and methods as well. This is dangerous in that information (possibly confidential) and methods normally unavailable would be accessible to malicious code.
-
-
Constructor Summary
Constructors Constructor and Description ReflectPermission(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 Detail
-
ReflectPermission
public ReflectPermission(String name)
Constructs a ReflectPermission with the specified name.- Parameters:
name
- the name of the ReflectPermission- Throws:
NullPointerException
- ifname
isnull
.IllegalArgumentException
- ifname
is empty.
-
ReflectPermission
public ReflectPermission(String name, String actions)
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.
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-java/lang/reflect/ReflectPermission.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.