X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/6e469559c558d87d7e3cc81fc024b597e00be313..9b758dfa70610ff5a3f200dfdf94e0c519b9b621:/src/com/owncloud/android/datamodel/DataStorageManager.java diff --git a/src/com/owncloud/android/datamodel/DataStorageManager.java b/src/com/owncloud/android/datamodel/DataStorageManager.java index 49a3cd73..14b69c75 100644 --- a/src/com/owncloud/android/datamodel/DataStorageManager.java +++ b/src/com/owncloud/android/datamodel/DataStorageManager.java @@ -1,9 +1,10 @@ /* ownCloud Android client application * Copyright (C) 2012 Bartek Przybylski + * Copyright (C) 2012-2013 ownCloud Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or + * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, @@ -40,4 +41,10 @@ public interface DataStorageManager { public Vector getDirectoryContent(OCFile f); public void removeFile(OCFile file, boolean removeLocalCopy); + + public void removeDirectory(OCFile dir, boolean removeDBData, boolean removeLocalContent); + + public void moveDirectory(OCFile dir, String newPath); + + public Vector getDirectoryImages(OCFile mParentFolder); }