Details
-
Sub-task
-
Resolution: Delivered
-
P4
-
17
-
Verified
Description
The following static methods used to set the system-wide socket implementation factories have been deprecated:
- `static void ServerSocket.setSocketFactory(SocketImplFactory fac)`
- `static void Socket.setSocketImplFactory(SocketImplFactory fac)`
- `static void DatagramSocket.setDatagramSocketImplFactory(DatagramSocketImplFactory fac)`
These API points were used to statically configure a system-wide factory for the corresponding socket types in the `java.net` package. These methods have mostly been obsolete since Java 1.4.
- `static void ServerSocket.setSocketFactory(SocketImplFactory fac)`
- `static void Socket.setSocketImplFactory(SocketImplFactory fac)`
- `static void DatagramSocket.setDatagramSocketImplFactory(DatagramSocketImplFactory fac)`
These API points were used to statically configure a system-wide factory for the corresponding socket types in the `java.net` package. These methods have mostly been obsolete since Java 1.4.
Attachments
Issue Links
- relates to
-
JDK-8235139 Deprecate the socket impl factory mechanism
- Resolved