org.apache.mina.examples.echoserver.ssl
Class SSLSocketFactory

java.lang.Object
  extended by javax.net.SocketFactory
      extended by org.apache.mina.examples.echoserver.ssl.SSLSocketFactory

public class SSLSocketFactory
extends SocketFactory

Simple Socket factory to create sockets with or without SSL enabled. If SSL enabled a "bougus" SSL Context is used (suitable for test purposes)

Version:
$Rev: 264677 $, $Date: 2005-08-30 11:44:35 +0900 $

Constructor Summary
SSLSocketFactory()
           
 
Method Summary
 Socket createSocket(InetAddress arg1, int arg2)
           
 Socket createSocket(InetAddress arg1, int arg2, InetAddress arg3, int arg4)
           
 Socket createSocket(String arg1, int arg2)
           
 Socket createSocket(String arg1, int arg2, InetAddress arg3, int arg4)
           
static SocketFactory getSocketFactory()
           
static boolean isSslEnabled()
           
static void setSslEnabled(boolean newSslEnabled)
           
 
Methods inherited from class javax.net.SocketFactory
createSocket, getDefault
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SSLSocketFactory

public SSLSocketFactory()
Method Detail

createSocket

public Socket createSocket(String arg1,
                           int arg2)
                    throws IOException,
                           UnknownHostException
Specified by:
createSocket in class SocketFactory
Throws:
IOException
UnknownHostException

createSocket

public Socket createSocket(String arg1,
                           int arg2,
                           InetAddress arg3,
                           int arg4)
                    throws IOException,
                           UnknownHostException
Specified by:
createSocket in class SocketFactory
Throws:
IOException
UnknownHostException

createSocket

public Socket createSocket(InetAddress arg1,
                           int arg2)
                    throws IOException
Specified by:
createSocket in class SocketFactory
Throws:
IOException

createSocket

public Socket createSocket(InetAddress arg1,
                           int arg2,
                           InetAddress arg3,
                           int arg4)
                    throws IOException
Specified by:
createSocket in class SocketFactory
Throws:
IOException

getSocketFactory

public static SocketFactory getSocketFactory()

isSslEnabled

public static boolean isSslEnabled()

setSslEnabled

public static void setSslEnabled(boolean newSslEnabled)


Copyright © 2004-2005 . All Rights Reserved.