2019-12-03 13:57:53 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2019-11-20 08:22:00 -05:00
|
|
|
|
|
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2019-11-20 08:22:00 -05:00
|
|
|
*/
|
|
|
|
|
namespace OCP\User\Events;
|
|
|
|
|
|
|
|
|
|
use OCP\EventDispatcher\Event;
|
|
|
|
|
use OCP\IUser;
|
|
|
|
|
|
|
|
|
|
/**
|
2020-08-10 08:24:24 -04:00
|
|
|
* Emitted when a new user has been created on the back-end.
|
|
|
|
|
*
|
2019-11-20 08:22:00 -05:00
|
|
|
* @since 18.0.0
|
|
|
|
|
*/
|
|
|
|
|
class UserCreatedEvent extends Event {
|
|
|
|
|
/** @var IUser */
|
|
|
|
|
private $user;
|
|
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
|
private $password;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @since 18.0.0
|
|
|
|
|
*/
|
|
|
|
|
public function __construct(IUser $user,
|
2023-11-23 04:22:34 -05:00
|
|
|
string $password) {
|
2019-11-20 08:22:00 -05:00
|
|
|
parent::__construct();
|
|
|
|
|
$this->user = $user;
|
|
|
|
|
$this->password = $password;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @since 18.0.0
|
|
|
|
|
*/
|
|
|
|
|
public function getUser(): IUser {
|
|
|
|
|
return $this->user;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @since 18.0.0
|
|
|
|
|
*/
|
|
|
|
|
public function getUid(): string {
|
|
|
|
|
return $this->user->getUID();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @since 18.0.0
|
|
|
|
|
*/
|
|
|
|
|
public function getPassword(): string {
|
|
|
|
|
return $this->password;
|
|
|
|
|
}
|
|
|
|
|
}
|