common/servicemix-components/src/main/java/org/apache/servicemix/components/http/HttpsConnector.java [44:70]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	private static final Logger logger = LoggerFactory.getLogger(HttpsConnector.class);

    private SslSocketConnector listener = new SslSocketConnector();
    
	/**
	 * The maximum number of threads for the Jetty SocketListener. It's set 
	 * to 256 by default to match the default value in Jetty. 
	 */
	private int maxThreads = 256;
    private Server server;
    private String host;
    private int port;
    private String keyPassword;
    private String keyStore;
    private String keyStorePassword;
    private String keyStoreType = "JKS"; // type of the key store
    private String protocol = "TLS";
    // cert algorithm
    private String keyManagerFactoryAlgorithm = Security.getProperty(
        "ssl.KeyManagerFactory.algorithm") == null
        ? "SunX509" : Security.getProperty("ssl.KeyManagerFactory.algorithm");
    // cert algorithm
    private String trustManagerFactoryAlgorithm = Security.getProperty(
        "ssl.TrustManagerFactory.algorithm") == null
        ? "SunX509" : Security.getProperty("ssl.TrustManagerFactory.algorithm");
    private boolean wantClientAuth = false;
    private boolean needClientAuth = false;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



common/servicemix-components/src/main/java/org/apache/servicemix/components/http/HttpsSoapConnector.java [39:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static final Logger logger = LoggerFactory.getLogger(HttpsConnector.class);

    private SslSocketConnector listener = new SslSocketConnector();
	
	/**
	 * The maximum number of threads for the Jetty SocketListener. It's set 
	 * to 256 by default to match the default value in Jetty. 
	 */
	private int maxThreads = 256;
	private Server server;
	private String host;
	private int port;
    private String keyPassword;
    private String keyStore;
    private String keyStorePassword;
    private String keyStoreType = "JKS"; // type of the key store
    private String protocol = "TLS";
    // cert algorithm
    private String keyManagerFactoryAlgorithm = Security.getProperty(
        "ssl.KeyManagerFactory.algorithm") == null
        ? "SunX509" : Security.getProperty("ssl.KeyManagerFactory.algorithm");
    // cert algorithm
    private String trustManagerFactoryAlgorithm = Security.getProperty(
        "ssl.TrustManagerFactory.algorithm") == null
        ? "SunX509" : Security.getProperty("ssl.TrustManagerFactory.algorithm");
    private boolean wantClientAuth = false;
    private boolean needClientAuth = false;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



