mirror of
https://github.com/nextcloud/android.git
synced 2024-11-28 02:17:43 +03:00
OC-2168: Add new class REadRemoteFileOperation to library
This commit is contained in:
parent
59f806f692
commit
afebd9625e
2 changed files with 20 additions and 0 deletions
|
@ -5,5 +5,6 @@
|
|||
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="src" path="gen"/>
|
||||
<classpathentry exported="true" kind="lib" path="D:/solidgear/OwnCloud/android/libs/jackrabbit-webdav-2.2.5-jar-with-dependencies.jar"/>
|
||||
<classpathentry kind="output" path="bin/classes"/>
|
||||
</classpath>
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
package com.owncloud.android.oc_framework.operations.remote;
|
||||
|
||||
import com.owncloud.android.oc_framework.network.webdav.WebdavClient;
|
||||
import com.owncloud.android.oc_framework.operations.RemoteOperation;
|
||||
import com.owncloud.android.oc_framework.operations.RemoteOperationResult;
|
||||
|
||||
public class ReadRemoteFileOperation extends RemoteOperation {
|
||||
|
||||
public ReadRemoteFileOperation() {
|
||||
// TODO Auto-generated constructor stub
|
||||
}
|
||||
|
||||
@Override
|
||||
protected RemoteOperationResult run(WebdavClient client) {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue