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

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

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 UpsertRequestFactoryConfigConverter extends AbstractElasticSearchRequestFactoryConfigConverter {

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy