May 2001
Intermediate to advanced
618 pages
20h 50m
English
Class javax.net.SocketFactory
Instances of this class can be used to create
client sockets. The default factory (returned from the getDefault( ) method) will create standard TCP sockets; subclasses of this class can be used to obtain SSL sockets.
public abstract class javax.net.SocketFactory
extends java.lang.Object {
// Constructors
protected SocketFactory( );
// Class Methods
public static SocketFactory getDefault( );
// Instance Methods
public abstract Socket createSocket(InetAddress, int);
public abstract Socket createSocket(InetAddress, int,
InetAddress, int);
public abstract Socket createSocket(String, int, InetAddress, int);
public abstract Socket createSocket(String, int);
}
SSLSocketFactory
|
Read now
Unlock full access