Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6379073

Undefined security policy in javax.sound.sampled

XMLWordPrintable

    • Fix Understood
    • generic
    • generic

      Some methods of classes in javax.sound.sampled package may throw a SecurityException. However, the cases when it will be thrown should be described more precisely. By now all descriptions of SecurityException cases look like:

       "... due to security restrictions"

        Such description does not give a complete presentation about permissions that the test should have to be sure that no correct SecurityException may be thrown.
        See the examples of detailed description in java.util.logging.Handler:
      --
      public abstract void close()
                          throws SecurityException

                    ...
          Throws:
              SecurityException - if a security manager exists and if the caller does not have LoggingPermission("control").
      --


        Below is the list of methods that need more detailed description of SecurityException cases.

      Phrase "if ... is not available due to security restrictions" used in:
      javax.sound.sampled.AudioSystem:
      public static Mixer getMixer(Mixer.Info info)
      public static Line getLine(Line.Info info)
      public static Clip getClip()
      public static Clip getClip(Mixer.Info mixerInfo)
      public static SourceDataLine getSourceDataLine(AudioFormat format)
      public static SourceDataLine getSourceDataLine(AudioFormat format,
                                                     Mixer.Info mixerinfo)
      public static TargetDataLine getTargetDataLine(AudioFormat format)
      public static TargetDataLine getTargetDataLine(AudioFormat format,
                                                     Mixer.Info mixerinfo)

      javax.sound.sampled.Mixer:
      Line getLine(Line.Info info)
      Line[] getSourceLines()
      Line[] getTargetLines()


      Phrase "if the line cannot be opened[closed] due to security restrictions" used in:
      javax.sound.sampled.SourceDataLine:
      void open(AudioFormat format,
                int bufferSize)
      void open(AudioFormat format)

      javax.sound.sampled.TargetDataLine:
      void open(AudioFormat format,
                int bufferSize)
      void open(AudioFormat format)

      javax.sound.sampled.Clip:
      void open(AudioFormat format,
                byte[] data,
                int offset,
                int bufferSize)
      void open(AudioInputStream stream)

      javax.sound.sampled.Line:
      void open()
      void close()

            Unassigned Unassigned
            ashusher Alexander Shusherov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Imported:
              Indexed: