mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-26 06:55:42 +03:00
update imports for dav4jvm
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
parent
33a505ff71
commit
510e555eb5
9 changed files with 30 additions and 29 deletions
|
@ -22,12 +22,12 @@ package com.nextcloud.talk.components.filebrowser.models;
|
|||
|
||||
import android.net.Uri;
|
||||
import android.text.TextUtils;
|
||||
import at.bitfire.dav4android.Property;
|
||||
import at.bitfire.dav4android.Response;
|
||||
import at.bitfire.dav4android.property.DisplayName;
|
||||
import at.bitfire.dav4android.property.GetContentType;
|
||||
import at.bitfire.dav4android.property.GetLastModified;
|
||||
import at.bitfire.dav4android.property.ResourceType;
|
||||
import at.bitfire.dav4jvm.Property;
|
||||
import at.bitfire.dav4jvm.Response;
|
||||
import at.bitfire.dav4jvm.property.DisplayName;
|
||||
import at.bitfire.dav4jvm.property.GetContentType;
|
||||
import at.bitfire.dav4jvm.property.GetLastModified;
|
||||
import at.bitfire.dav4jvm.property.ResourceType;
|
||||
import com.bluelinelabs.logansquare.annotation.JsonObject;
|
||||
import com.nextcloud.talk.components.filebrowser.models.properties.*;
|
||||
import lombok.Data;
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
package com.nextcloud.talk.components.filebrowser.models;
|
||||
|
||||
import at.bitfire.dav4android.Response;
|
||||
import at.bitfire.dav4jvm.Response;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
|
|
|
@ -21,9 +21,9 @@
|
|||
package com.nextcloud.talk.components.filebrowser.models.properties;
|
||||
|
||||
import android.text.TextUtils;
|
||||
import at.bitfire.dav4android.Property;
|
||||
import at.bitfire.dav4android.PropertyFactory;
|
||||
import at.bitfire.dav4android.XmlUtils;
|
||||
import at.bitfire.dav4jvm.Property;
|
||||
import at.bitfire.dav4jvm.PropertyFactory;
|
||||
import at.bitfire.dav4jvm.XmlUtils;
|
||||
import com.nextcloud.talk.components.filebrowser.webdav.DavUtils;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
|
|
@ -21,9 +21,9 @@
|
|||
package com.nextcloud.talk.components.filebrowser.models.properties;
|
||||
|
||||
import android.text.TextUtils;
|
||||
import at.bitfire.dav4android.Property;
|
||||
import at.bitfire.dav4android.PropertyFactory;
|
||||
import at.bitfire.dav4android.XmlUtils;
|
||||
import at.bitfire.dav4jvm.Property;
|
||||
import at.bitfire.dav4jvm.PropertyFactory;
|
||||
import at.bitfire.dav4jvm.XmlUtils;
|
||||
import com.nextcloud.talk.components.filebrowser.webdav.DavUtils;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
|
|
@ -21,9 +21,9 @@
|
|||
package com.nextcloud.talk.components.filebrowser.models.properties;
|
||||
|
||||
import android.text.TextUtils;
|
||||
import at.bitfire.dav4android.Property;
|
||||
import at.bitfire.dav4android.PropertyFactory;
|
||||
import at.bitfire.dav4android.XmlUtils;
|
||||
import at.bitfire.dav4jvm.Property;
|
||||
import at.bitfire.dav4jvm.PropertyFactory;
|
||||
import at.bitfire.dav4jvm.XmlUtils;
|
||||
import com.nextcloud.talk.components.filebrowser.webdav.DavUtils;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
|
|
@ -21,9 +21,9 @@
|
|||
package com.nextcloud.talk.components.filebrowser.models.properties;
|
||||
|
||||
import android.text.TextUtils;
|
||||
import at.bitfire.dav4android.Property;
|
||||
import at.bitfire.dav4android.PropertyFactory;
|
||||
import at.bitfire.dav4android.XmlUtils;
|
||||
import at.bitfire.dav4jvm.Property;
|
||||
import at.bitfire.dav4jvm.PropertyFactory;
|
||||
import at.bitfire.dav4jvm.XmlUtils;
|
||||
import com.nextcloud.talk.components.filebrowser.webdav.DavUtils;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
|
|
@ -21,10 +21,11 @@
|
|||
package com.nextcloud.talk.components.filebrowser.models.properties;
|
||||
|
||||
import android.text.TextUtils;
|
||||
import at.bitfire.dav4android.Property;
|
||||
import at.bitfire.dav4android.PropertyFactory;
|
||||
import at.bitfire.dav4android.XmlUtils;
|
||||
import at.bitfire.dav4jvm.Property;
|
||||
import at.bitfire.dav4jvm.PropertyFactory;
|
||||
import at.bitfire.dav4jvm.XmlUtils;
|
||||
import com.nextcloud.talk.components.filebrowser.webdav.DavUtils;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
|
|
@ -20,10 +20,10 @@
|
|||
|
||||
package com.nextcloud.talk.components.filebrowser.webdav;
|
||||
|
||||
import at.bitfire.dav4android.Property;
|
||||
import at.bitfire.dav4android.PropertyFactory;
|
||||
import at.bitfire.dav4android.PropertyRegistry;
|
||||
import at.bitfire.dav4android.property.*;
|
||||
import at.bitfire.dav4jvm.Property;
|
||||
import at.bitfire.dav4jvm.PropertyFactory;
|
||||
import at.bitfire.dav4jvm.PropertyRegistry;
|
||||
import at.bitfire.dav4jvm.property.*;
|
||||
import com.nextcloud.talk.components.filebrowser.models.properties.*;
|
||||
|
||||
import java.lang.reflect.Field;
|
||||
|
|
|
@ -20,9 +20,9 @@
|
|||
|
||||
package com.nextcloud.talk.components.filebrowser.webdav;
|
||||
|
||||
import at.bitfire.dav4android.DavResource;
|
||||
import at.bitfire.dav4android.Response;
|
||||
import at.bitfire.dav4android.exception.DavException;
|
||||
import at.bitfire.dav4jvm.DavResource;
|
||||
import at.bitfire.dav4jvm.Response;
|
||||
import at.bitfire.dav4jvm.exception.DavException;
|
||||
import com.nextcloud.talk.components.filebrowser.models.BrowserFile;
|
||||
import com.nextcloud.talk.components.filebrowser.models.DavResponse;
|
||||
import com.nextcloud.talk.dagger.modules.RestModule;
|
||||
|
|
Loading…
Reference in a new issue