| | |
| | | * The desired password for the user, or {@code null} if a new |
| | | * password should be generated. |
| | | * @return This password modify request. |
| | | * @throws UnsupportedOperationException |
| | | * If this password modify extended request does not permit the new |
| | | * password to be set. |
| | | */ |
| | | PasswordModifyExtendedRequest setNewPassword(ByteString newPassword); |
| | | PasswordModifyExtendedRequest setNewPassword(ByteString newPassword) |
| | | throws UnsupportedOperationException; |
| | | |
| | | |
| | | |
| | |
| | | * The desired password for the user, or {@code null} if a new |
| | | * password should be generated. |
| | | * @return This password modify request. |
| | | * @throws UnsupportedOperationException |
| | | * If this password modify extended request does not permit the new |
| | | * password to be set. |
| | | */ |
| | | PasswordModifyExtendedRequest setNewPassword(String newPassword); |
| | | PasswordModifyExtendedRequest setNewPassword(String newPassword) |
| | | throws UnsupportedOperationException; |
| | | |
| | | |
| | | |
| | |
| | | * The current password for the user, or {@code null} if the password |
| | | * is not known. |
| | | * @return This password modify request. |
| | | * @throws UnsupportedOperationException |
| | | * If this password modify extended request does not permit the old |
| | | * password to be set. |
| | | */ |
| | | PasswordModifyExtendedRequest setOldPassword(ByteString oldPassword); |
| | | PasswordModifyExtendedRequest setOldPassword(ByteString oldPassword) |
| | | throws UnsupportedOperationException; |
| | | |
| | | |
| | | |
| | |
| | | * The current password for the user, or {@code null} if the password |
| | | * is not known. |
| | | * @return This password modify request. |
| | | * @throws UnsupportedOperationException |
| | | * If this password modify extended request does not permit the old |
| | | * password to be set. |
| | | */ |
| | | PasswordModifyExtendedRequest setOldPassword(String oldPassword); |
| | | PasswordModifyExtendedRequest setOldPassword(String oldPassword) |
| | | throws UnsupportedOperationException; |
| | | |
| | | |
| | | |
| | |
| | | * {@code null} if the request should be applied to the user |
| | | * currently associated with the session. |
| | | * @return This password modify request. |
| | | * @throws UnsupportedOperationException |
| | | * If this password modify extended request does not permit the user |
| | | * identity to be set. |
| | | */ |
| | | PasswordModifyExtendedRequest setUserIdentity(ByteString userIdentity); |
| | | PasswordModifyExtendedRequest setUserIdentity(ByteString userIdentity) |
| | | throws UnsupportedOperationException; |
| | | |
| | | |
| | | |
| | |
| | | * {@code null} if the request should be applied to the user |
| | | * currently associated with the session. |
| | | * @return This password modify request. |
| | | * @throws UnsupportedOperationException |
| | | * If this password modify extended request does not permit the user |
| | | * identity to be set. |
| | | */ |
| | | PasswordModifyExtendedRequest setUserIdentity(String userIdentity); |
| | | PasswordModifyExtendedRequest setUserIdentity(String userIdentity) |
| | | throws UnsupportedOperationException; |
| | | |
| | | } |