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

org.elasticsearch.restjmx.RestJmxModule Maven / Gradle / Ivy

There is a newer version: 7.2.0.redhat-060
Show newest version
package org.elasticsearch.restjmx;

import org.elasticsearch.common.inject.AbstractModule;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.http.HttpServerManagement;

public class RestJmxModule extends AbstractModule {

    private final Settings settings;

    public RestJmxModule(Settings settings) {
        this.settings = settings;
    }

    @Override
    protected void configure() {
        bind(RestJmxManagement.class).asEagerSingleton();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy