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