package io.vertx.reactivex.ext.auth.oauth2.providers;
import java.util.Map;
import io.reactivex.Observable;
import io.reactivex.Flowable;
import io.reactivex.Single;
import io.reactivex.Completable;
import io.reactivex.Maybe;
import io.vertx.core.http.HttpClientOptions;
@io.vertx.lang.rx.RxGen(io.vertx.ext.auth.oauth2.providers.SoundcloudAuth.class)
public class SoundcloudAuth {
@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;
SoundcloudAuth that = (SoundcloudAuth) o;
return delegate.equals(that.delegate);
}
@Override
public int hashCode() {
return delegate.hashCode();
}
public static final io.vertx.lang.rx.TypeArg<SoundcloudAuth> __TYPE_ARG = new io.vertx.lang.rx.TypeArg<>( obj -> new SoundcloudAuth((io.vertx.ext.auth.oauth2.providers.SoundcloudAuth) obj),
SoundcloudAuth::getDelegate
);
private final io.vertx.ext.auth.oauth2.providers.SoundcloudAuth delegate;
public SoundcloudAuth(io.vertx.ext.auth.oauth2.providers.SoundcloudAuth delegate) {
this.delegate = delegate;
}
public io.vertx.ext.auth.oauth2.providers.SoundcloudAuth 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.providers.SoundcloudAuth.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, HttpClientOptions httpClientOptions) {
io.vertx.reactivex.ext.auth.oauth2.OAuth2Auth ret = io.vertx.reactivex.ext.auth.oauth2.OAuth2Auth.newInstance(io.vertx.ext.auth.oauth2.providers.SoundcloudAuth.create(vertx.getDelegate(), clientId, clientSecret, httpClientOptions));
return ret;
}
public static SoundcloudAuth newInstance(io.vertx.ext.auth.oauth2.providers.SoundcloudAuth arg) {
return arg != null ? new SoundcloudAuth(arg) : null;
}
}