Class FXPermission

All Implemented Interfaces:
Serializable, Guard

public final class FXPermission extends BasicPermission
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 Details

    • FXPermission

      public FXPermission(String name)
      Creates a new FXPermission with the specified name. The name is the symbolic name of the FXPermission, 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 name is null.
      IllegalArgumentException - if name is empty.