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

com.github.euler.elasticsearch.req.UpdateRequestFactoryConfigConverter 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 UpdateRequestFactoryConfigConverter extends AbstractElasticSearchRequestFactoryConfigConverter {

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy