-
CSR
-
Resolution: Approved
-
P4
-
None
-
source, behavioral
-
minimal
-
Mimimal risk - this is just the deprecation
-
Java API
-
SE
Summary
The class javax.sound.sampled.AudioPermission is deprecated for removal because it can no longer be used to control access since the Java SecurityManager is now permanently disabled.
Problem
The class javax.sound.sampled.AudioPermission is obsolete.
Solution
Deprecate the class for removal.
Specification
javax/sound/sampled/AudioPermission.java
* @apiNote
* This permission cannot be used for controlling access to resources
* as the Security Manager is no longer supported.
+ * Consequently this class is deprecated and may be removed in a future release.
*
* @author Kara Kytle
* @since 1.3
+ * @deprecated There is no replacement for this class.
*/
+@Deprecated(since="24", forRemoval=true)
public class AudioPermission extends BasicPermission {
- csr of
-
JDK-8342281 Deprecate for removal javax.sound.sampled.AudioPermission
- Resolved