Home
last modified time | relevance | path

Searched refs:newPassword (Results 1 – 4 of 4) sorted by relevance

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
DPasswordModifyRequest.php46 protected $newPassword; variable in FreeDSx\\Ldap\\Operation\\Request\\PasswordModifyRequest
51 * @param null|string $newPassword
53 …__construct(?string $userIdentity = null, ?string $oldPassword = null, ?string $newPassword = null) argument
57 $this->newPassword = $newPassword;
85 return $this->newPassword;
89 * @param null|string $newPassword
92 public function setNewPassword(?string $newPassword) argument
94 $this->newPassword = $newPassword;
131 if ($this->newPassword !== null) {
132 $this->requestValue->addChild(Asn1::context(2, Asn1::octetString($this->newPassword)));
/plugin/authgooglesheets/vendor/google/apiclient-services/src/IdentityToolkit/
DIdentitytoolkitRelyingpartyResetPasswordRequest.php29 public $newPassword; variable in Google\\Service\\IdentityToolkit\\IdentitytoolkitRelyingpartyResetPasswordRequest
56 public function setNewPassword($newPassword) argument
58 $this->newPassword = $newPassword;
65 return $this->newPassword;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AndroidManagement/
DCommand.php38 public $newPassword; variable in Google\\Service\\AndroidManagement\\Command
97 public function setNewPassword($newPassword) argument
99 $this->newPassword = $newPassword;
106 return $this->newPassword;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
DOperations.php163 …function passwordModify(string $username, string $oldPassword, string $newPassword): PasswordModif… argument
165 return new PasswordModifyRequest($username, $oldPassword, $newPassword);