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

com.github.euler.opendistro.AuthInfoRequest Maven / Gradle / Ivy

The newest version!
package com.github.euler.opendistro;

import org.apache.http.client.methods.HttpPost;
import org.elasticsearch.client.Request;
import org.elasticsearch.client.Validatable;

public class AuthInfoRequest implements Validatable {

    public static final AuthInfoRequest INSTANCE = new AuthInfoRequest();

    private AuthInfoRequest() {
    }

    public Request getRequest() {
        return new Request(HttpPost.METHOD_NAME, "/_opendistro/_security/authinfo");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy