io.reactiverse.elasticsearch.client.SecurityClientImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-client-rxjava2 Show documentation
Show all versions of elasticsearch-client-rxjava2 Show documentation
Reactiverse Elasticsearch client :: RxJava2 bindings
/*
[NOTE] This is an automatically generated file.
Do not make changes to this file but to the shim code generator.
*/
package io.reactiverse.elasticsearch.client;
import io.vertx.core.*;
import org.elasticsearch.client.*;
import org.elasticsearch.action.ActionListener;
import org.elasticsearch.client.security.DeleteRoleRequest;
import org.elasticsearch.client.security.DeleteRoleResponse;
import org.elasticsearch.client.security.PutRoleMappingRequest;
import org.elasticsearch.client.security.PutRoleMappingResponse;
import org.elasticsearch.client.security.DisableUserRequest;
import org.elasticsearch.client.security.EnableUserRequest;
import org.elasticsearch.client.security.GetSslCertificatesRequest;
import org.elasticsearch.client.security.GetSslCertificatesResponse;
import org.elasticsearch.client.security.PutUserRequest;
import org.elasticsearch.client.security.PutUserResponse;
import org.elasticsearch.client.security.EmptyResponse;
import org.elasticsearch.client.security.ChangePasswordRequest;
import org.elasticsearch.client.security.DeleteRoleMappingRequest;
import org.elasticsearch.client.security.DeleteRoleMappingResponse;
import java.io.IOException;
import static java.util.Collections.emptySet;
import static java.util.Collections.singleton;
class SecurityClientImpl implements SecurityClient {
private final Vertx vertx;
private final org.elasticsearch.client.SecurityClient delegate;
SecurityClientImpl(Vertx vertx, org.elasticsearch.client.SecurityClient delegate) {
this.vertx = vertx;
this.delegate = delegate;
}
@Override()
public void putUserAsync(PutUserRequest request, RequestOptions options, Handler> handler) {
Context context = vertx.getOrCreateContext();
delegate.putUserAsync(request, options, new ActionListener() {
@Override
public void onResponse(PutUserResponse value) {
context.runOnContext(v -> handler.handle(Future.succeededFuture(value)));
}
@Override
public void onFailure(Exception e) {
context.runOnContext(v -> handler.handle(Future.failedFuture(e)));
}
});
}
@Override()
public void putRoleMappingAsync(final PutRoleMappingRequest request, final RequestOptions options, final Handler> handler) {
Context context = vertx.getOrCreateContext();
delegate.putRoleMappingAsync(request, options, new ActionListener() {
@Override
public void onResponse(PutRoleMappingResponse value) {
context.runOnContext(v -> handler.handle(Future.succeededFuture(value)));
}
@Override
public void onFailure(Exception e) {
context.runOnContext(v -> handler.handle(Future.failedFuture(e)));
}
});
}
@Override()
public void enableUserAsync(EnableUserRequest request, RequestOptions options, Handler> handler) {
Context context = vertx.getOrCreateContext();
delegate.enableUserAsync(request, options, new ActionListener() {
@Override
public void onResponse(EmptyResponse value) {
context.runOnContext(v -> handler.handle(Future.succeededFuture(value)));
}
@Override
public void onFailure(Exception e) {
context.runOnContext(v -> handler.handle(Future.failedFuture(e)));
}
});
}
@Override()
public void disableUserAsync(DisableUserRequest request, RequestOptions options, Handler> handler) {
Context context = vertx.getOrCreateContext();
delegate.disableUserAsync(request, options, new ActionListener() {
@Override
public void onResponse(EmptyResponse value) {
context.runOnContext(v -> handler.handle(Future.succeededFuture(value)));
}
@Override
public void onFailure(Exception e) {
context.runOnContext(v -> handler.handle(Future.failedFuture(e)));
}
});
}
@Override()
public void getSslCertificatesAsync(RequestOptions options, Handler> handler) {
Context context = vertx.getOrCreateContext();
delegate.getSslCertificatesAsync(options, new ActionListener() {
@Override
public void onResponse(GetSslCertificatesResponse value) {
context.runOnContext(v -> handler.handle(Future.succeededFuture(value)));
}
@Override
public void onFailure(Exception e) {
context.runOnContext(v -> handler.handle(Future.failedFuture(e)));
}
});
}
@Override()
public void changePasswordAsync(ChangePasswordRequest request, RequestOptions options, Handler> handler) {
Context context = vertx.getOrCreateContext();
delegate.changePasswordAsync(request, options, new ActionListener() {
@Override
public void onResponse(EmptyResponse value) {
context.runOnContext(v -> handler.handle(Future.succeededFuture(value)));
}
@Override
public void onFailure(Exception e) {
context.runOnContext(v -> handler.handle(Future.failedFuture(e)));
}
});
}
@Override()
public void deleteRoleMappingAsync(DeleteRoleMappingRequest request, RequestOptions options, Handler> handler) {
Context context = vertx.getOrCreateContext();
delegate.deleteRoleMappingAsync(request, options, new ActionListener() {
@Override
public void onResponse(DeleteRoleMappingResponse value) {
context.runOnContext(v -> handler.handle(Future.succeededFuture(value)));
}
@Override
public void onFailure(Exception e) {
context.runOnContext(v -> handler.handle(Future.failedFuture(e)));
}
});
}
@Override()
public void deleteRoleAsync(DeleteRoleRequest request, RequestOptions options, Handler> handler) {
Context context = vertx.getOrCreateContext();
delegate.deleteRoleAsync(request, options, new ActionListener() {
@Override
public void onResponse(DeleteRoleResponse value) {
context.runOnContext(v -> handler.handle(Future.succeededFuture(value)));
}
@Override
public void onFailure(Exception e) {
context.runOnContext(v -> handler.handle(Future.failedFuture(e)));
}
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy