- java.lang.Object
-
- java.security.Permission
-
- java.security.BasicPermission
-
- jakarta.xml.bind.JAXBPermission
-
- All Implemented Interfaces:
java.io.Serializable
,java.security.Guard
public final class JAXBPermission extends java.security.BasicPermission
This class is for Jakarta XML Binding 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 Jakarta XML Binding 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 Jakarta XML Binding 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.- Author:
- Joe Fialli
- See Also:
BasicPermission
,Permission
,Permissions
,PermissionCollection
,SecurityManager
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JAXBPermission(java.lang.String name)
Creates a new JAXBPermission with the specified name.
-