/*
 * Copyright 2014 Red Hat, Inc.
 *
 * Red Hat licenses this file to you under the Apache License, version 2.0
 * (the "License"); you may not use this file except in compliance with the
 * License.  You may obtain a copy of the License at:
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */

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;

Simplified factory to create an for Twitter.

NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.
/** * Simplified factory to create an for Twitter. * * <p/> * NOTE: This class has been automatically generated from the {@link io.vertx.ext.auth.oauth2.providers.TwitterAuth original} non RX-ified interface using Vert.x codegen. */
@io.vertx.lang.rx.RxGen(io.vertx.ext.auth.oauth2.providers.TwitterAuth.class) public class TwitterAuth { @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; TwitterAuth that = (TwitterAuth) o; return delegate.equals(that.delegate); } @Override public int hashCode() { return delegate.hashCode(); } public static final io.vertx.lang.rx.TypeArg<TwitterAuth> __TYPE_ARG = new io.vertx.lang.rx.TypeArg<>( obj -> new TwitterAuth((io.vertx.ext.auth.oauth2.providers.TwitterAuth) obj), TwitterAuth::getDelegate ); private final io.vertx.ext.auth.oauth2.providers.TwitterAuth delegate; public TwitterAuth(io.vertx.ext.auth.oauth2.providers.TwitterAuth delegate) { this.delegate = delegate; } public io.vertx.ext.auth.oauth2.providers.TwitterAuth getDelegate() { return delegate; }
Create a OAuth2Auth provider for Twitter
Params:
  • vertx –
  • clientId – the client id given to you by Twitter
  • clientSecret – the client secret given to you by Twitter
Returns:
/** * Create a OAuth2Auth provider for Twitter * @param vertx * @param clientId the client id given to you by Twitter * @param clientSecret the client secret given to you by Twitter * @return */
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.TwitterAuth.create(vertx.getDelegate(), clientId, clientSecret)); return ret; }
Create a OAuth2Auth provider for Twitter
Params:
  • vertx –
  • clientId – the client id given to you by Twitter
  • clientSecret – the client secret given to you by Twitter
  • httpClientOptions – custom http client options
Returns:
/** * Create a OAuth2Auth provider for Twitter * @param vertx * @param clientId the client id given to you by Twitter * @param clientSecret the client secret given to you by Twitter * @param httpClientOptions custom http client options * @return */
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.TwitterAuth.create(vertx.getDelegate(), clientId, clientSecret, httpClientOptions)); return ret; } public static TwitterAuth newInstance(io.vertx.ext.auth.oauth2.providers.TwitterAuth arg) { return arg != null ? new TwitterAuth(arg) : null; } }