123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?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;
- /**
- * @since 18.0.0
- */
- class UserLoggedInEvent extends Event {
- /** @var IUser */
- private $user;
- /** @var string|null */
- private $password;
- /** @var bool */
- private $isTokenLogin;
- /** @var string */
- private $loginName;
- /**
- * @since 18.0.0
- */
- public function __construct(IUser $user, string $loginName, ?string $password, bool $isTokenLogin) {
- parent::__construct();
- $this->user = $user;
- $this->password = $password;
- $this->isTokenLogin = $isTokenLogin;
- $this->loginName = $loginName;
- }
- /**
- * @since 18.0.0
- */
- public function getUser(): IUser {
- return $this->user;
- }
- /**
- * @since 31.0.0
- */
- public function getUid(): string {
- return $this->user->getUID();
- }
- /**
- * @since 21.0.0
- */
- public function getLoginName(): string {
- return $this->loginName;
- }
- /**
- * @since 18.0.0
- */
- public function getPassword(): ?string {
- return $this->password;
- }
- /**
- * @since 18.0.0
- */
- public function isTokenLogin(): bool {
- return $this->isTokenLogin;
- }
- }
|