| 
JavaTM 2 Platform Std. Ed. v1.4.2  | 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Packages that use ServerSocket | |
| java.nio.channels | 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. | 
| java.rmi.server | Provides classes and interfaces for supporting the server side of RMI. | 
| javax.net | Provides classes for networking applications. | 
| javax.net.ssl | Provides classes for the secure socket package. | 
| Uses of ServerSocket in java.nio.channels | 
| Methods in java.nio.channels that return ServerSocket | |
abstract  ServerSocket | 
ServerSocketChannel.socket()
Retrieves a server socket associated with this channel.  | 
| Uses of ServerSocket in java.rmi.server | 
| Methods in java.rmi.server that return ServerSocket | |
abstract  ServerSocket | 
RMISocketFactory.createServerSocket(int port)
Create a server socket on the specified port (port 0 indicates an anonymous port).  | 
 ServerSocket | 
RMIServerSocketFactory.createServerSocket(int port)
Create a server socket on the specified port (port 0 indicates an anonymous port).  | 
| Uses of ServerSocket in javax.net | 
| Methods in javax.net that return ServerSocket | |
 ServerSocket | 
ServerSocketFactory.createServerSocket()
Returns an unbound server socket.  | 
abstract  ServerSocket | 
ServerSocketFactory.createServerSocket(int port)
Returns a server socket bound to the specified port.  | 
abstract  ServerSocket | 
ServerSocketFactory.createServerSocket(int port,
                   int backlog)
Returns a server socket bound to the specified port, and uses the specified connection backlog.  | 
abstract  ServerSocket | 
ServerSocketFactory.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.ssl | 
| Subclasses of ServerSocket in javax.net.ssl | |
 class | 
SSLServerSocket
This class extends ServerSockets and
 provides secure server sockets using protocols such as the Secure
 Sockets Layer (SSL) or Transport Layer Security (TLS) protocols. | 
  | 
JavaTM 2 Platform Std. Ed. v1.4.2  | 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.