Home
last modified time | relevance | path

Searched refs:oldPassword (Results 1 – 3 of 3) sorted by relevance

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
DPasswordModifyRequest.php41 protected $oldPassword; variable in FreeDSx\\Ldap\\Operation\\Request\\PasswordModifyRequest
50 * @param null|string $oldPassword
53 …public function __construct(?string $userIdentity = null, ?string $oldPassword = null, ?string $ne… argument
56 $this->oldPassword = $oldPassword;
104 return $this->oldPassword;
108 * @param null|string $oldPassword
111 public function setOldPassword(?string $oldPassword) argument
113 $this->oldPassword = $oldPassword;
128 if ($this->oldPassword !== null) {
129 $this->requestValue->addChild(Asn1::context(1, Asn1::octetString($this->oldPassword)));
/plugin/authgooglesheets/vendor/google/apiclient-services/src/IdentityToolkit/
DIdentitytoolkitRelyingpartyResetPasswordRequest.php33 public $oldPassword; variable in Google\\Service\\IdentityToolkit\\IdentitytoolkitRelyingpartyResetPasswordRequest
70 public function setOldPassword($oldPassword) argument
72 $this->oldPassword = $oldPassword;
79 return $this->oldPassword;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
DOperations.php163 …public static function passwordModify(string $username, string $oldPassword, string $newPassword):… argument
165 return new PasswordModifyRequest($username, $oldPassword, $newPassword);