- java.lang.Object
-
- java.security.Permission
-
- java.security.BasicPermission
-
- javax.xml.bind.JAXBPermission
-
- All Implemented Interfaces:
- Serializable, Guard
public final class JAXBPermission extends BasicPermission
This class is for JAXB permissions. AJAXBPermission
contains a name (also referred to as a "target name") but no actions list; you either have the named permission or you don't.The target name is the name of the JAXB permission (see below).
The following table lists all the possible
JAXBPermission
target names, and for each provides a description of what the permission allows and a discussion of the risks of granting code the permission.Permission Target Name What the Permission Allows Risks of Allowing this Permission setDatatypeConverter Allows the code to set VM-wide DatatypeConverterInterface
viathe setDatatypeConverter method
that all the methods onDatatypeConverter
uses.Malicious code can set DatatypeConverterInterface
, which has VM-wide singleton semantics, before a genuine JAXB implementation sets one. This allows malicious code to gain access to objects that it may otherwise not have access to, such asFrame.getFrames()
that belongs to another application running in the same JVM.- Since:
- JAXB 2.2
- See Also:
BasicPermission
,Permission
,Permissions
,PermissionCollection
,SecurityManager
, Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description JAXBPermission(String name)
Creates a new JAXBPermission with the specified name.
-
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
-
JAXBPermission
public JAXBPermission(String name)
Creates a new JAXBPermission with the specified name.- Parameters:
name
- The name of the JAXBPermission. As of 2.2 only "setDatatypeConverter" is defined.
-
-
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-javax/xml/bind/JAXBPermission.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.