0
0
mirror of https://github.com/nextcloud/server.git synced 2024-12-29 16:38:28 +00:00
nextcloud_server/lib/public/User/Events/BeforePasswordUpdatedEvent.php
Andy Scherzinger dae7c159f7
chore: Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-05-24 13:11:22 +02:00

68 lines
1.2 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCP\User\Events;
use OCP\EventDispatcher\Event;
use OCP\IUser;
/**
* Emitted before the user password is updated.
*
* @since 18.0.0
*/
class BeforePasswordUpdatedEvent extends Event {
/** @var IUser */
private $user;
/** @var string */
private $password;
/** @var string|null */
private $recoveryPassword;
/**
* @param IUser $user
* @param string $password
* @param string|null $recoveryPassword
* @since 18.0.0
*/
public function __construct(IUser $user,
string $password,
?string $recoveryPassword = null) {
parent::__construct();
$this->user = $user;
$this->password = $password;
$this->recoveryPassword = $recoveryPassword;
}
/**
* @return IUser
* @since 18.0.0
*/
public function getUser(): IUser {
return $this->user;
}
/**
* @return string
* @since 18.0.0
*/
public function getPassword(): string {
return $this->password;
}
/**
* @return string|null
* @since 18.0.0
*/
public function getRecoveryPassword(): ?string {
return $this->recoveryPassword;
}
}