Uses of Class
java.net.ServerSocket
Packages that use ServerSocket
Package
Description
Provides the classes for implementing networking applications.
Defines channels, which represent connections to entities that are capable of
 performing I/O operations, such as files and sockets; defines selectors, for
 multiplexed, non-blocking I/O operations.
Provides classes and interfaces for supporting the server side of RMI.
Provides classes for networking applications.
Provides classes for the secure socket package.
Provides implementations of 
RMIClientSocketFactory
 and RMIServerSocketFactory over
 the Secure Sockets Layer (SSL) or Transport Layer Security (TLS) protocols.Platform specific socket options for the 
java.net and java.nio.channels
 socket classes.- 
Uses of ServerSocket in java.netMethods in java.net that return ServerSocketModifier and TypeMethodDescription<T> ServerSocketServerSocket.setOption(SocketOption<T> name, T value) Sets the value of a socket option.
- 
Uses of ServerSocket in java.nio.channelsMethods in java.nio.channels that return ServerSocketModifier and TypeMethodDescriptionabstract ServerSocketServerSocketChannel.socket()Retrieves a server socket associated with this channel.
- 
Uses of ServerSocket in java.rmi.serverMethods in java.rmi.server that return ServerSocketModifier and TypeMethodDescriptionRMIServerSocketFactory.createServerSocket(int port) Create a server socket on the specified port (port 0 indicates an anonymous port).abstract ServerSocketRMISocketFactory.createServerSocket(int port) Create a server socket on the specified port (port 0 indicates an anonymous port).
- 
Uses of ServerSocket in javax.netMethods in javax.net that return ServerSocketModifier and TypeMethodDescriptionServerSocketFactory.createServerSocket()Returns an unbound server socket.abstract ServerSocketServerSocketFactory.createServerSocket(int port) Returns a server socket bound to the specified port.abstract ServerSocketServerSocketFactory.createServerSocket(int port, int backlog) Returns a server socket bound to the specified port, and uses the specified connection backlog.abstract ServerSocketServerSocketFactory.createServerSocket(int port, int backlog, InetAddress ifAddress) Returns a server socket bound to the specified port, with a specified listen backlog and local IP.
- 
Uses of ServerSocket in javax.net.sslSubclasses of ServerSocket in javax.net.sslModifier and TypeClassDescriptionclassThis class extendsServerSocketand provides secure server sockets using protocols such as the Secure Sockets Layer (SSL) or Transport Layer Security (TLS) protocols.
- 
Uses of ServerSocket in javax.rmi.sslMethods in javax.rmi.ssl that return ServerSocketModifier and TypeMethodDescriptionSslRMIServerSocketFactory.createServerSocket(int port) Creates a server socket that accepts SSL connections configured according to this factory's SSL socket configuration parameters.
- 
Uses of ServerSocket in jdk.netMethods in jdk.net with parameters of type ServerSocketModifier and TypeMethodDescriptionstatic <T> TSockets.getOption(ServerSocket s, SocketOption<T> name) Deprecated.static <T> voidSockets.setOption(ServerSocket s, SocketOption<T> name, T value) Deprecated.usesetOption(SocketOption, Object)instead.
getOption(SocketOption)instead.