File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
firebase-auth-rest/core/src/main/java/com/anotherdev/firebase/auth Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 88
99import java .util .List ;
1010
11+ import io .reactivex .rxjava3 .annotations .CheckReturnValue ;
1112import io .reactivex .rxjava3 .core .Completable ;
1213import io .reactivex .rxjava3 .core .Single ;
1314
@@ -36,17 +37,22 @@ public interface FirebaseUser {
3637 boolean isAnonymous ();
3738
3839 @ NonNull
40+ @ CheckReturnValue
3941 Single <SignInResponse > linkWithCredential (@ NonNull AuthCredential credential );
4042
4143 @ NonNull
44+ @ CheckReturnValue
4245 Single <SignInResponse > reauthenticate (@ NonNull AuthCredential credential );
4346
4447 @ NonNull
48+ @ CheckReturnValue
4549 Completable reload ();
4650
4751 @ NonNull
52+ @ CheckReturnValue
4853 Completable updateProfile (@ NonNull UserProfileChangeRequest request );
4954
5055 @ NonNull
56+ @ CheckReturnValue
5157 Completable updatePassword (@ NonNull String newPassword );
5258}
You can’t perform that action at this time.
0 commit comments