From: masensio Date: Fri, 22 Nov 2013 13:51:01 +0000 (+0100) Subject: OC-2168: Add new class REadRemoteFileOperation to library X-Git-Tag: oc-android-1.5.5~116^2~12 X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/commitdiff_plain/afebd9625ea9ec2aeed352736a7237064efe04bf?ds=inline OC-2168: Add new class REadRemoteFileOperation to library --- diff --git a/oc_framework/.classpath b/oc_framework/.classpath index 51769745..72e286b9 100644 --- a/oc_framework/.classpath +++ b/oc_framework/.classpath @@ -5,5 +5,6 @@ + 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 index 00000000..12c31420 --- /dev/null +++ b/oc_framework/src/com/owncloud/android/oc_framework/operations/remote/ReadRemoteFileOperation.java @@ -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; + } + +}