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

com.github.euler.elasticsearch.req.InsertRequestFactoryConfigConverter Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
package com.github.euler.elasticsearch.req;

import com.github.euler.configuration.ConfigContext;
import com.github.euler.configuration.TypesConfigConverter;
import com.typesafe.config.Config;

public class InsertRequestFactoryConfigConverter extends AbstractElasticSearchRequestFactoryConfigConverter {

    @Override
    public String configType() {
        return "insert";
    }

    @Override
    public ElasticSearchRequestFactory convert(Config config, ConfigContext configContext, TypesConfigConverter typeConfigConverter) {
        return new InsertRequestFactory();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy