package io.vertx.reactivex.ext.auth.ldap;
import io.vertx.reactivex.RxHelper;
import io.vertx.reactivex.ObservableHelper;
import io.vertx.reactivex.FlowableHelper;
import io.vertx.reactivex.impl.AsyncResultMaybe;
import io.vertx.reactivex.impl.AsyncResultSingle;
import io.vertx.reactivex.impl.AsyncResultCompletable;
import io.vertx.reactivex.WriteStreamObserver;
import io.vertx.reactivex.WriteStreamSubscriber;
import java.util.Map;
import java.util.Set;
import java.util.List;
import java.util.Iterator;
import java.util.function.Function;
import java.util.stream.Collectors;
import io.vertx.core.Handler;
import io.vertx.core.AsyncResult;
import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import io.vertx.lang.rx.RxGen;
import io.vertx.lang.rx.TypeArg;
import io.vertx.lang.rx.MappingIterator;
@RxGen(io.vertx.ext.auth.ldap.LdapAuthentication.class)
public class LdapAuthentication extends io.vertx.reactivex.ext.auth.authentication.AuthenticationProvider {
@Override
public String toString() {
return delegate.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
LdapAuthentication that = (LdapAuthentication) o;
return delegate.equals(that.delegate);
}
@Override
public int hashCode() {
return delegate.hashCode();
}
public static final TypeArg<LdapAuthentication> __TYPE_ARG = new TypeArg<>( obj -> new LdapAuthentication((io.vertx.ext.auth.ldap.LdapAuthentication) obj),
LdapAuthentication::getDelegate
);
private final io.vertx.ext.auth.ldap.LdapAuthentication delegate;
public LdapAuthentication(io.vertx.ext.auth.ldap.LdapAuthentication delegate) {
super(delegate);
this.delegate = delegate;
}
public LdapAuthentication(Object delegate) {
super((io.vertx.ext.auth.ldap.LdapAuthentication)delegate);
this.delegate = (io.vertx.ext.auth.ldap.LdapAuthentication)delegate;
}
public io.vertx.ext.auth.ldap.LdapAuthentication getDelegate() {
return delegate;
}
public static io.vertx.reactivex.ext.auth.ldap.LdapAuthentication create(io.vertx.reactivex.core.Vertx vertx, io.vertx.ext.auth.ldap.LdapAuthenticationOptions options) {
io.vertx.reactivex.ext.auth.ldap.LdapAuthentication ret = io.vertx.reactivex.ext.auth.ldap.LdapAuthentication.newInstance((io.vertx.ext.auth.ldap.LdapAuthentication)io.vertx.ext.auth.ldap.LdapAuthentication.create(vertx.getDelegate(), options));
return ret;
}
public static LdapAuthentication newInstance(io.vertx.ext.auth.ldap.LdapAuthentication arg) {
return arg != null ? new LdapAuthentication(arg) : null;
}
}