mirror of
https://github.com/nextcloud/desktop.git
synced 2026-01-14 02:01:28 +00:00
- Removed explicit reference to NextcloudKit dependency which implicitly is pulled in already by NextcloudFileProviderKit. - Consolidated some source code files into their respective view controllers in the file provider UI extension. Signed-off-by: Iva Horn <iva.horn@icloud.com>
31 lines
1.0 KiB
Objective-C
31 lines
1.0 KiB
Objective-C
/*
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef ClientCommunicationProtocol_h
|
|
#define ClientCommunicationProtocol_h
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@protocol ClientCommunicationProtocol
|
|
|
|
/**
|
|
* @brief Get the raw file provider domain identifier value.
|
|
*/
|
|
- (void)getFileProviderDomainIdentifierWithCompletionHandler:(void(^)(NSString *extensionAccountId, NSError *error))completionHandler;
|
|
|
|
- (void)configureAccountWithUser:(NSString *)user
|
|
userId:(NSString *)userId
|
|
serverUrl:(NSString *)serverUrl
|
|
password:(NSString *)password
|
|
userAgent:(NSString *)userAgent;
|
|
- (void)removeAccountConfig;
|
|
- (void)getTrashDeletionEnabledStateWithCompletionHandler:(void(^)(BOOL enabled, BOOL set))completionHandler;
|
|
- (void)setTrashDeletionEnabled:(BOOL)enabled;
|
|
- (void)setIgnoreList:(NSArray<NSString *> *)ignoreList;
|
|
|
|
@end
|
|
|
|
#endif /* ClientCommunicationProtocol_h */
|