Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IUserMapping.php « UserMapping « ACL « lib - github.com/nextcloud/groupfolders.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f4d8ef8539702b0880b20ba439cc529575c03f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

declare(strict_types=1);
/**
 * SPDX-FileCopyrightText: 2019 Robin Appelman <robin@icewind.nl>
 *
 * SPDX-License-Identifier: AGPL-3.0-or-later
 *
 */

namespace OCA\GroupFolders\ACL\UserMapping;

interface IUserMapping {
	/** @return 'user'|'group' */
	public function getType(): string;

	public function getId(): string;

	public function getDisplayName(): string;
}