package io.vertx.reactivex.ext.auth.properties;
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.properties.PropertyFileAuthentication.class)
public class PropertyFileAuthentication 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;
PropertyFileAuthentication that = (PropertyFileAuthentication) o;
return delegate.equals(that.delegate);
}
@Override
public int hashCode() {
return delegate.hashCode();
}
public static final TypeArg<PropertyFileAuthentication> __TYPE_ARG = new TypeArg<>( obj -> new PropertyFileAuthentication((io.vertx.ext.auth.properties.PropertyFileAuthentication) obj),
PropertyFileAuthentication::getDelegate
);
private final io.vertx.ext.auth.properties.PropertyFileAuthentication delegate;
public PropertyFileAuthentication(io.vertx.ext.auth.properties.PropertyFileAuthentication delegate) {
super(delegate);
this.delegate = delegate;
}
public PropertyFileAuthentication(Object delegate) {
super((io.vertx.ext.auth.properties.PropertyFileAuthentication)delegate);
this.delegate = (io.vertx.ext.auth.properties.PropertyFileAuthentication)delegate;
}
public io.vertx.ext.auth.properties.PropertyFileAuthentication getDelegate() {
return delegate;
}
public static io.vertx.reactivex.ext.auth.properties.PropertyFileAuthentication create(io.vertx.reactivex.core.Vertx vertx, String path) {
io.vertx.reactivex.ext.auth.properties.PropertyFileAuthentication ret = io.vertx.reactivex.ext.auth.properties.PropertyFileAuthentication.newInstance((io.vertx.ext.auth.properties.PropertyFileAuthentication)io.vertx.ext.auth.properties.PropertyFileAuthentication.create(vertx.getDelegate(), path));
return ret;
}
public static PropertyFileAuthentication newInstance(io.vertx.ext.auth.properties.PropertyFileAuthentication arg) {
return arg != null ? new PropertyFileAuthentication(arg) : null;
}
}