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