| java.lang.Object | |
| ↳ | com.google.firebase.auth.UserProvider.Builder |
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| UserProvider |
build()
Builds a new
UserProvider. | ||||||||||
| UserProvider.Builder |
setDisplayName(String displayName)
Sets the user's display name.
| ||||||||||
| UserProvider.Builder |
setEmail(String email)
Sets the user's email address.
| ||||||||||
| UserProvider.Builder |
setPhotoUrl(String photoUrl)
Sets the photo URl of the user.
| ||||||||||
| UserProvider.Builder |
setProviderId(String providerId)
Sets the ID of the identity provider.
| ||||||||||
| UserProvider.Builder |
setUid(String uid)
Sets the user's unique ID assigned by the identity provider.
| ||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
Sets the user's display name.
| displayName | display name of the user. |
|---|
Sets the user's email address.
| an email address string. |
Sets the photo URl of the user.
| photoUrl | a photo URL string. |
|---|
Sets the ID of the identity provider. This can be a short domain name (e.g. google.com) or the identifier of an OpenID identity provider. This field is required.
| providerId | an ID string that uniquely identifies the identity provider. |
|---|
Sets the user's unique ID assigned by the identity provider. This field is required.
| uid | a user ID string. |
|---|