Method | Method detail |
---|---|
registerUser() | Used to initiate User Registration. This method returns created User information for further process i.e. Authentication. |
authenticateUser() | Used to initiate User Signin and to determine whether the user is valid to authenticate or not. |
socialLogin() | It validates the social user. |
forgetPassword() | Used to request the password of the user on email id passed as parameter. |
changePassword() | Used to change the password of the logged in user. |
deleteUserAccount() | is used to delete the current logged in user’s profile from the system. |
logout() | It logs out the user and deletes all user data from the device. After calling this method, isUserLoggedIn() will return false since the user is logged out. |
isUserLogedin() | It returns true if the user is currently logged-in and false if the user is logged out. |