Interface ISelfServicePasswordReset
-
- All Superinterfaces:
com4j.Com4jObject
public interface ISelfServicePasswordReset extends com4j.Com4jObject
For HP use. ICustomizationFields Internal functionality.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isSSPREnabled()
Returns whether Self-Service Password Reset is enabled.void
ssprChangePassword(java.lang.String password, java.lang.String ssprCipher, java.lang.String name)
Send the new password, SSPR_CIPHER, name (the user name that user entered in change password window, if it is impersonate this meby different from the real user name), to the server.void
ssprSendMail(java.lang.String userName)
Send email that contain SSPR_LINK (URL + Cipher (user name + GUID) ) for change password window.
-
-
-
Method Detail
-
ssprSendMail
void ssprSendMail(java.lang.String userName)
Send email that contain SSPR_LINK (URL + Cipher (user name + GUID) ) for change password window.
- Parameters:
userName
- Mandatory java.lang.String parameter.
-
ssprChangePassword
void ssprChangePassword(java.lang.String password, java.lang.String ssprCipher, java.lang.String name)
Send the new password, SSPR_CIPHER, name (the user name that user entered in change password window, if it is impersonate this meby different from the real user name), to the server.
- Parameters:
password
- Mandatory java.lang.String parameter.ssprCipher
- Mandatory java.lang.String parameter.name
- Mandatory java.lang.String parameter.
-
isSSPREnabled
boolean isSSPREnabled()
Returns whether Self-Service Password Reset is enabled.
- Returns:
- Returns a value of type boolean
-
-