All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.firebase.auth.OAuthProvider Maven / Gradle / Ivy

package com.google.firebase.auth;

import kotlin.NotImplementedError;

import java.util.List;
import java.util.Map;

public class OAuthProvider {

    public OAuthProvider(Builder builder) {
        throw new NotImplementedError();
    }

    public static AuthCredential getCredential(String email, String password) {
        throw new NotImplementedError();
    }

    public static class Builder {
        public Builder setScopes(List scopes) {
            throw new NotImplementedError();
        }
        public Builder addCustomParameters(Map customParameters) {
            throw new NotImplementedError();
        }
        public OAuthProvider build() {
            throw new NotImplementedError();
        }
    }

    public static class CredentialBuilder {
        public Builder setAccessToken(String accessToken) {
            throw new NotImplementedError();
        }
        public Builder setIdToken(String idToken) {
            throw new NotImplementedError();
        }
        public Builder setIdTokenWithRawNonce(String idToken, String rawNonce) {
            throw new NotImplementedError();
        }
        public void build() {
            throw new NotImplementedError();
        }
    }

    public static Builder newBuilder(String provider, FirebaseAuth auth) {
        throw new NotImplementedError();
    }

    public static CredentialBuilder newCredentialBuilder(String provider) {
        throw new NotImplementedError();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy