|
@@ -1,23 +1,13 @@
|
|
/*
|
|
/*
|
|
- * ownCloud Android client application
|
|
|
|
- *
|
|
|
|
- * @author David A. Velasco
|
|
|
|
- * Copyright (C) 2016 ownCloud Inc.
|
|
|
|
- *
|
|
|
|
- * This program is free software: you can redistribute it and/or modify
|
|
|
|
- * it under the terms of the GNU General Public License version 2,
|
|
|
|
- * as published by the Free Software Foundation.
|
|
|
|
- *
|
|
|
|
- * This program is distributed in the hope that it will be useful,
|
|
|
|
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
- * GNU General Public License for more details.
|
|
|
|
- *
|
|
|
|
- * You should have received a copy of the GNU General Public License
|
|
|
|
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
+ * Nextcloud - Android Client
|
|
*
|
|
*
|
|
|
|
+ * SPDX-FileCopyrightText: 2020 Chris Narkiewicz <hello@ezaquarii.com>
|
|
|
|
+ * SPDX-FileCopyrightText: 2018-2023 Tobias Kaminsky <tobias@kaminsky.me>
|
|
|
|
+ * SPDX-FileCopyrightText: 2018 Andy Scherzinger <info@andy-scherzinger.de>
|
|
|
|
+ * SPDX-FileCopyrightText: 2016 ownCloud Inc.
|
|
|
|
+ * SPDX-FileCopyrightText: 2012-2013 David A. Velasco <dvelasco@solidgear.es>
|
|
|
|
+ * SPDX-License-Identifier: GPL-2.0-only AND AGPL-3.0-or-later
|
|
*/
|
|
*/
|
|
-
|
|
|
|
package com.owncloud.android.operations;
|
|
package com.owncloud.android.operations;
|
|
|
|
|
|
import android.content.Context;
|
|
import android.content.Context;
|
|
@@ -53,14 +43,11 @@ import java.util.concurrent.atomic.AtomicBoolean;
|
|
|
|
|
|
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
|
|
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
|
|
|
|
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* Remote operation performing the synchronization of the list of files contained
|
|
* Remote operation performing the synchronization of the list of files contained
|
|
* in a folder identified with its remote path.
|
|
* in a folder identified with its remote path.
|
|
- *
|
|
|
|
* Fetches the list and properties of the files contained in the given folder, including their
|
|
* Fetches the list and properties of the files contained in the given folder, including their
|
|
* properties, and updates the local database with them.
|
|
* properties, and updates the local database with them.
|
|
- *
|
|
|
|
* Does NOT enter in the child folders to synchronize their contents also, BUT requests for a new operation instance
|
|
* Does NOT enter in the child folders to synchronize their contents also, BUT requests for a new operation instance
|
|
* doing so.
|
|
* doing so.
|
|
*/
|
|
*/
|