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

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

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

import java.util.Map;

import org.elasticsearch.action.update.UpdateRequest;

public class UpsertRequestFactory extends UpdateRequestFactory {

    @Override
    public UpdateRequest create(String index, String id, Map source) {
        UpdateRequest req = super.create(index, id, source);
        req.docAsUpsert(true);
        return req;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy