Package com. streamwide. smartms. lib. core. api. account. login
Types
Link copied to clipboard
A callback to be implemented in order to receive information about the login process
Link copied to clipboard
IAccountCallback
Description :
This callback is used in STWAccountManager when doing the loginExample of use :
- Implementation :
LogoutCallBack mLogoutCallBack = new LogoutCallBack() { public void onStart() { } public void onFinish() { } public void onError() { } }Content copied to clipboard - Register :
STWAccountManager.getInstance().logout(context,informAdmin, mLogoutCallBack);Content copied to clipboard
Link copied to clipboard
An object holding information regarding the registration, such us the link to be sent by email and/or SMS
Link copied to clipboard
RegisterOrganisationCallback :
A callback used in STWAccountManager when registering a user using only the organisation ID.Link copied to clipboard