org.apache.cxf.transport.https_jetty
Class JettySslConnectorFactory

java.lang.Object
  extended by org.apache.cxf.transport.https_jetty.JettySslConnectorFactory
All Implemented Interfaces:
JettyConnectorFactory

public final class JettySslConnectorFactory
extends Object
implements JettyConnectorFactory

This class wraps the JettyConnectorFactory and will create TLS enabled acceptors.


Constructor Summary
JettySslConnectorFactory(org.apache.cxf.configuration.jsse.TLSServerParameters params)
           
JettySslConnectorFactory(org.apache.cxf.configuration.jsse.TLSServerParameters params, int maxIdle)
           
 
Method Summary
 org.eclipse.jetty.server.AbstractConnector createConnector(int port)
          Create a Listener.
 org.eclipse.jetty.server.AbstractConnector createConnector(String host, int port)
          Create a Listener.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JettySslConnectorFactory

public JettySslConnectorFactory(org.apache.cxf.configuration.jsse.TLSServerParameters params)

JettySslConnectorFactory

public JettySslConnectorFactory(org.apache.cxf.configuration.jsse.TLSServerParameters params,
                                int maxIdle)
Method Detail

createConnector

public org.eclipse.jetty.server.AbstractConnector createConnector(int port)
Create a Listener.

Specified by:
createConnector in interface JettyConnectorFactory
Parameters:
port - the listen port

createConnector

public org.eclipse.jetty.server.AbstractConnector createConnector(String host,
                                                                  int port)
Create a Listener.

Specified by:
createConnector in interface JettyConnectorFactory
Parameters:
host - the host to bind to. IP address or hostname is allowed. null to bind to all hosts.
port - the listen port


Apache CXF