public static abstract class

ProviderConfig.AbstractCreateRequest

extends Object
java.lang.Object
   ↳ com.google.firebase.auth.ProviderConfig.AbstractCreateRequest<T extends com.google.firebase.auth.ProviderConfig.AbstractCreateRequest<T>>
Known Direct Subclasses

Class Overview

A base specification class for creating a new provider.

Set the initial attributes of the new provider by calling various setter methods available in this class.

Summary

Public Constructors
ProviderConfig.AbstractCreateRequest()
Public Methods
T setDisplayName(String displayName)
Sets the display name for the new provider.
T setEnabled(boolean enabled)
Sets whether to allow the user to sign in with the provider.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public ProviderConfig.AbstractCreateRequest ()

Public Methods

public T setDisplayName (String displayName)

Sets the display name for the new provider.

Parameters
displayName A non-null, non-empty display name string.
Throws
IllegalArgumentException If the display name is null or empty.

public T setEnabled (boolean enabled)

Sets whether to allow the user to sign in with the provider.

Parameters
enabled A boolean indicating whether the user can sign in with the provider.