All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nitorcreations.willow.servers.MetricsProxyingServer Maven / Gradle / Ivy

The newest version!
package com.nitorcreations.willow.servers;

import com.google.inject.Injector;

public class MetricsProxyingServer extends MetricsServer {

  public static void main(final String... args) throws Exception {
    main(new MetricsProxyingServer());
  }

  public MetricsProxyingServer() throws Exception {
    super();
  }
  @Override
  protected WillowServletContextListener getEnduserContextListener(Injector parent) {
    return new MetricsProxyingEndUserContextListener(parent);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy