Class AudioPermission

All Implemented Interfaces:
Serializable, Guard

public class AudioPermission extends BasicPermission
The AudioPermission class represents access rights to the audio system resources. An AudioPermission contains 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 audio permission. The names follow the hierarchical property-naming convention. Also, an asterisk can be used to represent all the audio permissions.

API Note:
This permission cannot be used for controlling access to resources as the Security Manager is no longer supported.
Since:
1.3
See Also:
  • Constructor Details

    • AudioPermission

      public AudioPermission(String name)
      Creates a new AudioPermission object that has the specified symbolic name, such as "play" or "record". An asterisk can be used to indicate all audio permissions.
      Parameters:
      name - the name of the new AudioPermission
      Throws:
      NullPointerException - if name is null
      IllegalArgumentException - if name is empty
    • AudioPermission

      public AudioPermission(String name, String actions)
      Creates a new AudioPermission object that has the specified symbolic name, such as "play" or "record". The actions parameter is currently unused and should be null.
      Parameters:
      name - the name of the new AudioPermission
      actions - (unused; should be null)
      Throws:
      NullPointerException - if name is null
      IllegalArgumentException - if name is empty