Contents
Class FlightRecorderPermission
java.lang.Object
java.security.Permission
java.security.BasicPermission
jdk.jfr.FlightRecorderPermission
- All Implemented Interfaces:
Serializable, Guard
@Deprecated(since="25",
forRemoval=true)
public final class FlightRecorderPermission
extends BasicPermission
Deprecated, for removal: This API element is subject to removal in a future version.
This permission cannot be used for controlling access to resources
as the Security Manager is no longer supported.
Permission for controlling access to Flight Recorder.
- Since:
- 9
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Constructs aFlightRecorderPermission
with the specified name. -
Method Summary
Methods declared in class BasicPermission
equals, getActions, hashCode, implies, newPermissionCollection
Methods declared in class Permission
checkGuard, getName, toString
-
Constructor Details
-
FlightRecorderPermission
Deprecated, for removal: This API element is subject to removal in a future version.Constructs aFlightRecorderPermission
with the specified name.- Parameters:
name
- the permission name, must be either"accessFlightRecorder"
or"registerEvent"
, notnull
- Throws:
IllegalArgumentException
- ifname
is empty or not valid
-