Use Advanced Search to search the entire archive.
[jsr363-experts] Rename *Service as *Provider
- From: Martin Desruisseaux <
>
- To:
- Subject: [jsr363-experts] Rename *Service as *Provider
- Date: Sat, 13 Dec 2014 20:47:09 +0900
- Organization: Geomatys
The javax.measure.spi package defines the following interfaces:
* SystemOfUnitsService
* UnitFormatService
However the usage in the JDK seems to use the Provider suffix instead
than Service, as we can find in the following packages:
* java.nio.channels.spi
* java.nio.charset.spi
* java.nio.file.spi
* java.text.spi
* java.util.spi
* javax.sound.midi.spi
* javax.sound.sampled.spi
* javax.sql.rowset.spi
* javax.xml.ws.spi
Exceptions to the "Provider" suffix usage are below (but none of them
use "Service"):
* javax.imageio.spi
* javax.naming.spi
* javax.security.auth.spi
I suggest to comply to JDK usage are replace "Service" by "Provider" in
above-cited interface names.
Martin