|
@@ -0,0 +1,20 @@
|
|
|
+package com.owncloud.android.operations.remote;
|
|
|
+
|
|
|
+import com.owncloud.android.operations.RemoteOperation;
|
|
|
+import com.owncloud.android.operations.RemoteOperationResult;
|
|
|
+
|
|
|
+import eu.alefzero.webdav.WebdavClient;
|
|
|
+
|
|
|
+public class CreateRemoteFolderOperation extends RemoteOperation {
|
|
|
+
|
|
|
+ public CreateRemoteFolderOperation() {
|
|
|
+ // TODO Auto-generated constructor stub
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected RemoteOperationResult run(WebdavClient client) {
|
|
|
+ // TODO Auto-generated method stub
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|