OC-2168: Add new class REadRemoteFileOperation to library
authormasensio <masensio@solidgear.es>
Fri, 22 Nov 2013 13:51:01 +0000 (14:51 +0100)
committermasensio <masensio@solidgear.es>
Fri, 22 Nov 2013 13:51:01 +0000 (14:51 +0100)
oc_framework/.classpath
oc_framework/src/com/owncloud/android/oc_framework/operations/remote/ReadRemoteFileOperation.java [new file with mode: 0644]

index 5176974..72e286b 100644 (file)
@@ -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="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>
        <classpathentry kind="output" path="bin/classes"/>
 </classpath>
diff --git a/oc_framework/src/com/owncloud/android/oc_framework/operations/remote/ReadRemoteFileOperation.java b/oc_framework/src/com/owncloud/android/oc_framework/operations/remote/ReadRemoteFileOperation.java
new file mode 100644 (file)
index 0000000..12c3142
--- /dev/null
@@ -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;
+       }
+
+}