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 SummaryConstructorsConstructorDescriptionFXPermission(String name) Deprecated, for removal: This API element is subject to removal in a future version.Creates a newFXPermissionwith the specified name.
- 
Method SummaryMethods declared in class java.security.BasicPermissionequals, getActions, hashCode, implies, newPermissionCollectionMethods declared in class java.security.PermissioncheckGuard, getName, toString
- 
Constructor Details- 
FXPermissionDeprecated, for removal: This API element is subject to removal in a future version.Creates a newFXPermissionwith 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- if- nameis- null.
- IllegalArgumentException- if- nameis empty.
 
 
-