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

org.codelibs.elasticsearch.df.DataFormatPlugin Maven / Gradle / Ivy

There is a newer version: 7.10.0
Show newest version
package org.codelibs.elasticsearch.df;

import org.codelibs.elasticsearch.df.rest.RestDataAction;
import org.elasticsearch.plugins.Plugin;
import org.elasticsearch.rest.RestModule;

public class DataFormatPlugin extends Plugin {
    @Override
    public String name() {
        return "DataFormatPlugin";
    }

    @Override
    public String description() {
        return "This plugin provides several response formats.";
    }

    // for Rest API
    public void onModule(final RestModule module) {
        module.addRestAction(RestDataAction.class);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy