1 7 8 15 16 package javax.net.ssl; 17 18 import java.net.*; 19 import java.security.*; 20 21 import javax.net.SocketFactory; 22 import java.io.IOException; 23 import com.sun.net.ssl.internal.ssl.Debug; 24 import com.sun.net.ssl.internal.ssl.ExportControl; 25 26 34 public abstract class SSLSocketFactory extends SocketFactory 35 { 36 37 40 public SSLSocketFactory() { } 41 42 54 public static synchronized SocketFactory getDefault() { 55 return null; 56 } 57 58 68 public abstract String[] getDefaultCipherSuites(); 69 70 80 public abstract String[] getSupportedCipherSuites(); 81 82 98 public abstract Socket createSocket(Socket s, String host, int port, boolean 99 autoClose) throws IOException; 100 } 101 | Popular Tags |