mirror of
https://github.com/nextcloud/server.git
synced 2025-05-02 21:10:39 +00:00
28 lines
507 B
PHP
28 lines
507 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCP\LDAP;
|
|
|
|
/**
|
|
* Interface IDeletionFlagSupport
|
|
*
|
|
* @since 11.0.0
|
|
*/
|
|
interface IDeletionFlagSupport {
|
|
/**
|
|
* Flag record for deletion.
|
|
* @param string $uid user id
|
|
* @since 11.0.0
|
|
*/
|
|
public function flagRecord($uid);
|
|
|
|
/**
|
|
* Unflag record for deletion.
|
|
* @param string $uid user id
|
|
* @since 11.0.0
|
|
*/
|
|
public function unflagRecord($uid);
|
|
}
|