public void setOneTimePassword(String loginName, String password) throws BssException, JsonException, IOException {
UserCredentialJsonBuilder userCredential = new UserCredentialJsonBuilder();
userCredential.setLoginName(loginName)
.setNewPassword(password);
AuthenticationService authenticationService = getAuthenticationService();
authenticationService.setOneTimePassword(userCredential);
}