Change User Password
To change the password for a user.
To update the password changing permissions:
Here, the third parameter represents modifyUserInfo
permission.
Your suggested change has been received. Thank you.
Please Note:
You are not viewing the most recent version of this page. 8.17.1 is the latest version available.
To change the password for a user.
NAESession session = NAESession.getSession("username", "password".toCharArray());
NAEAdminRequestProcessor processor= new NAEAdminRequestProcessor(session);
boolean response=processor.changePassword("user1","User@123");
NAESession session = NAESession.getSession("adminUser","adminPassword".toCharArray());
To update the password changing permissions:
NAEAdminRequestProcessor processor = new NAEAdminRequestProcessor(session);
boolean response=processor.changePassword("user1", "password",true);
Here, the third parameter represents modifyUserInfo
permission.
Thank you! Your suggestion has been submitted.
https://thales.na.market.dpondemand.io/docs/dpod/services/kmo….