Class FXPermission
java.lang.Object
java.security.Permission
java.security.BasicPermission
javafx.util.FXPermission
- All Implemented Interfaces:
Serializable
,Guard
Deprecated, for removal: This API element is subject to removal in a future version.
This class was only useful in connection with the
Security Manager, which is no longer supported.
There is no replacement for this class.
This class is for JavaFX permissions.
An
FXPermission
contains a target name but
no actions list; you either have the named permission
or you don't.- API Note:
- This permission cannot be used for controlling access to resources anymore as the Security Manager is no longer supported.
- Since:
- 9
- See Also:
-
Constructor Summary
ConstructorDescriptionFXPermission
(String name) Deprecated, for removal: This API element is subject to removal in a future version.Creates a newFXPermission
with the specified name. -
Method Summary
Methods declared in class java.security.BasicPermission
equals, getActions, hashCode, implies, newPermissionCollection
Methods declared in class java.security.Permission
checkGuard, getName, toString
-
Constructor Details
-
FXPermission
Deprecated, for removal: This API element is subject to removal in a future version.Creates a newFXPermission
with the specified name. The name is the symbolic name of theFXPermission
, such as "accessClipboard", "createTransparentWindow ", etc. An asterisk may be used to indicate all JavaFX permissions.- Parameters:
name
- the name of the FXPermission- Throws:
NullPointerException
- ifname
isnull
.IllegalArgumentException
- ifname
is empty.
-