From afebd9625ea9ec2aeed352736a7237064efe04bf Mon Sep 17 00:00:00 2001 From: masensio Date: Fri, 22 Nov 2013 14:51:01 +0100 Subject: [PATCH] OC-2168: Add new class REadRemoteFileOperation to library --- oc_framework/.classpath | 1 + .../operations/remote/ReadRemoteFileOperation.java | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 oc_framework/src/com/owncloud/android/oc_framework/operations/remote/ReadRemoteFileOperation.java 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; + } + +} -- 2.11.0