com.nitorcreations.willow.servers.MetricsProxyingServer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of willow-servers Show documentation
Show all versions of willow-servers Show documentation
Willow operational servlets and servers
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);
}
}