|
@@ -22,8 +22,6 @@
|
|
|
|
|
|
package com.nextcloud.talk.components.filebrowser.webdav;
|
|
|
|
|
|
-import android.util.Log;
|
|
|
-
|
|
|
import com.nextcloud.talk.components.filebrowser.models.properties.NCEncrypted;
|
|
|
import com.nextcloud.talk.components.filebrowser.models.properties.NCPermission;
|
|
|
import com.nextcloud.talk.components.filebrowser.models.properties.NCPreview;
|
|
@@ -31,14 +29,10 @@ import com.nextcloud.talk.components.filebrowser.models.properties.OCFavorite;
|
|
|
import com.nextcloud.talk.components.filebrowser.models.properties.OCId;
|
|
|
import com.nextcloud.talk.components.filebrowser.models.properties.OCSize;
|
|
|
|
|
|
-import java.lang.reflect.Field;
|
|
|
import java.util.ArrayList;
|
|
|
-import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
|
|
|
import at.bitfire.dav4jvm.Property;
|
|
|
-import at.bitfire.dav4jvm.PropertyFactory;
|
|
|
import at.bitfire.dav4jvm.PropertyRegistry;
|
|
|
import at.bitfire.dav4jvm.property.CreationDate;
|
|
|
import at.bitfire.dav4jvm.property.DisplayName;
|
|
@@ -49,7 +43,6 @@ import at.bitfire.dav4jvm.property.GetLastModified;
|
|
|
import at.bitfire.dav4jvm.property.ResourceType;
|
|
|
|
|
|
public class DavUtils {
|
|
|
- private static final String TAG = "DavUtils";
|
|
|
|
|
|
public static final String OC_NAMESPACE = "http://owncloud.org/ns";
|
|
|
public static final String NC_NAMESPACE = "http://nextcloud.org/ns";
|
|
@@ -66,12 +59,13 @@ public class DavUtils {
|
|
|
public static final String EXTENDED_PROPERTY_UNREAD_COMMENTS = "comments-unread";
|
|
|
public static final String EXTENDED_PROPERTY_HAS_PREVIEW = "has-preview";
|
|
|
public static final String EXTENDED_PROPERTY_NOTE = "note";
|
|
|
- public static final String TRASHBIN_FILENAME = "trashbin-filename";
|
|
|
- public static final String TRASHBIN_ORIGINAL_LOCATION = "trashbin-original-location";
|
|
|
- public static final String TRASHBIN_DELETION_TIME = "trashbin-deletion-time";
|
|
|
|
|
|
- public static final String PROPERTY_QUOTA_USED_BYTES = "quota-used-bytes";
|
|
|
- public static final String PROPERTY_QUOTA_AVAILABLE_BYTES = "quota-available-bytes";
|
|
|
+ // public static final String TRASHBIN_FILENAME = "trashbin-filename";
|
|
|
+ // public static final String TRASHBIN_ORIGINAL_LOCATION = "trashbin-original-location";
|
|
|
+ // public static final String TRASHBIN_DELETION_TIME = "trashbin-deletion-time";
|
|
|
+
|
|
|
+ // public static final String PROPERTY_QUOTA_USED_BYTES = "quota-used-bytes";
|
|
|
+ // public static final String PROPERTY_QUOTA_AVAILABLE_BYTES = "quota-available-bytes";
|
|
|
|
|
|
static Property.Name[] getAllPropSet() {
|
|
|
List<Property.Name> props = new ArrayList<>(20);
|