Update Role Passwords API
Last updated
Last updated
Package Name: 'com.wizarpos.wizarviewagentassistant'
Class Name: 'com.wizarpos.wizarviewagentassistant.AdminPwdMainService'
Before using the interface, ensure the package is imported and necessary permissions are added to the Android manifest file.
Include the following permissions in your application's manifest:
'android.permission.USER_PWD': permission for isUserPwd.
'android.permission.USER_PWD_MODIFY': permission for forceModifyUserPwd, enableUserLogin.
Checks if the provided string ('pwd') is the current user password.
Parameters | |
---|---|
Returns | |
---|---|
Modifies the user role password to the new password ('newPwd').
Enables or disables user role login based on the boolean value ('enable').
Access the necessary code snippets and download the AIDL file for implementation.
Parameters | |
---|---|
Returns | |
---|---|
Parameters | |
---|---|
Returns | |
---|---|
pwd
the user role password. It can not be null
boolean
a boolean representation of the result.
true if success. false if failure.
newPwd
the new user role password. It can not be null
boolean
a boolean representation of the result.
true if success. false if failure.
eneable
for the user login setting, a boolean value is used: true enables user login, while false disables it.
boolean
a boolean representation of the result.
true if success. false if failure.