I am using IBM MFP in my code and my current assignment involves migrating a project from MFP version v6.3 (Called as WorkLight) to Mobile First Platform v8.0.
During the migration process, the following Client API methods are considered as discontinued in v8.0. When I looked at IBM support site, it is told "No replacement". There is no more detail given on this. The methods are,
- WL.Client.getUserInfo
- WL.Client.updateUserInfo
- WL.Client.isUserAuthenticated
Does any one know what exactly this term "No replacement" mean? Does it mean the equivalent code has to be manually written by the developer who previously used WL.Client.getUserInfo?
This is the same case for other client API methods WL.Client.updateUserInfo & WL.Client.isUserAuthenticated?
Please help. I have gone through the IBM support knowledge centre, I don't see any page that gives a detailed explanation of "No replacement".

The following API's are discontinued in MFP Version 8.0 and there is no replacement/equivalent API's for these.
The following are the workarounds where you can achieve same behavior of these API's.
WL.Client.getUserInfo - User information can be obtained in onSuccess callback of SecurityCheck Challenge Handler soon after authentication process else in response callback of Login API for UserAuthentication Security Check. You can write logic to store it locally in application and use it whenever it is required.
WL.Client.updateUserInfo - Do Logout from UserAuthentication security check and Re-login with new user information.
WL.Client.isUserAuthenticated - Implement the timer functionality in onSuccess callback of SecurityCheck Challenge Handler for UserAuthentication Security Check, which should start at onSuccess callback & Set the time of timer equal to the expiration time of access token. In application if you want to check whether user is authenticated or not, You can check the timer object, if it is expired - This means access token is expired else user is still authenticated.
and also you can request these API's support for MobileFirst Platform version 8.0 here.