mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noël Rouvignac
25.17.2016 01bf9b6a5d324d45355659581e9ebbd1280834fe
opendj-server-legacy/src/main/java/org/opends/server/protocols/http/HTTPConnectionHandler.java
@@ -117,7 +117,7 @@
  private boolean enabled;
  /** The set of listeners for this connection handler. */
  private List<HostPort> listeners = new LinkedList<>();
  private final List<HostPort> listeners = new LinkedList<>();
  /** The HTTP server embedded in OpenDJ. */
  private HttpServer httpServer;
@@ -130,7 +130,7 @@
   * ensure no concurrent reads/writes can happen and adds/removes are fast. We
   * only use the keys, so it does not matter what value is put there.
   */
  private Map<ClientConnection, ClientConnection> clientConnections = new ConcurrentHashMap<>();
  private final Map<ClientConnection, ClientConnection> clientConnections = new ConcurrentHashMap<>();
  /** The set of statistics collected for this connection handler. */
  private HTTPStatistics statTracker;
@@ -374,17 +374,6 @@
    return protocol;
  }
  /**
   * Returns the SSL engine configured for this connection handler if SSL is
   * enabled, null otherwise.
   *
   * @return the SSL engine if SSL is enabled, null otherwise
   */
  SSLEngine getSSLEngine()
  {
    return sslEngineConfigurator.createSSLEngine();
  }
  @Override
  public String getShutdownListenerName()
  {