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

com.browserup.bup.proxy.guice.JettyModule Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package com.browserup.bup.proxy.guice;

import com.google.inject.Binder;
import com.google.inject.Module;
import org.eclipse.jetty.server.Server;

public class JettyModule implements Module {
    @Override
    public void configure(Binder binder) {
        binder.bind(Server.class).toProvider(JettyServerProvider.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy