UpdateUserPassword
From
(Difference between revisions)
Line 1: | Line 1: | ||
− | |||
== Method == | == Method == | ||
− | + | [[UpdateUserPasswordResult]] updateUserPassword([[UserIDBean]] userID, String userPK, String oldPassword, String newPassword) | |
== Description == | == Description == | ||
− | + | Attempts to update an existing user's password to a new password. | |
== Parameters == | == Parameters == | ||
Line 16: | Line 15: | ||
|The admin username and password. | |The admin username and password. | ||
|---- bgcolor=#EDEDFF | |---- bgcolor=#EDEDFF | ||
− | | | + | |String |
− | | | + | |userPK |
− | | | + | |The primary key of the user to update. |
+ | |---- bgcolor=#EDEDFF | ||
+ | |String | ||
+ | |oldPassword | ||
+ | |The old password of the user. | ||
+ | |---- bgcolor=#EDEDFF | ||
+ | |String | ||
+ | |newPassword | ||
+ | |The new password of the user. | ||
|} | |} | ||
== Return Value == | == Return Value == | ||
− | [[ | + | [[UpdateUserPasswordResult]] |
Latest revision as of 03:34, 9 June 2005
Contents |
[edit] Method
UpdateUserPasswordResult updateUserPassword(UserIDBean userID, String userPK, String oldPassword, String newPassword)
[edit] Description
Attempts to update an existing user's password to a new password.
[edit] Parameters
Type | Name | Description |
---|---|---|
UserIDBean | userID | The admin username and password. |
String | userPK | The primary key of the user to update. |
String | oldPassword | The old password of the user. |
String | newPassword | The new password of the user. |