![JAR search and dependency download from the Maven repository](/logo.png)
com.github.euler.elasticsearch.req.UpdateRequestFactoryConfigConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of euler-elasticsearch Show documentation
Show all versions of euler-elasticsearch Show documentation
Euler - File Processing API - Elasticsearch module.
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