X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/dad222191608dd903e7247615fe9abc1b6c74e39..cc39a76a90e6ecd572dbb249faae4e00b115832f:/src/com/owncloud/android/operations/CreateFolderOperation.java diff --git a/src/com/owncloud/android/operations/CreateFolderOperation.java b/src/com/owncloud/android/operations/CreateFolderOperation.java index 5745ec21..f28ad29e 100644 --- a/src/com/owncloud/android/operations/CreateFolderOperation.java +++ b/src/com/owncloud/android/operations/CreateFolderOperation.java @@ -23,9 +23,10 @@ import org.apache.commons.httpclient.HttpStatus; import org.apache.jackrabbit.webdav.client.methods.MkColMethod; import com.owncloud.android.Log_OC; -import com.owncloud.android.datamodel.DataStorageManager; +import com.owncloud.android.datamodel.FileDataStorageManager; import com.owncloud.android.datamodel.OCFile; + import eu.alefzero.webdav.WebdavClient; import eu.alefzero.webdav.WebdavUtils; @@ -43,7 +44,7 @@ public class CreateFolderOperation extends RemoteOperation { protected String mRemotePath; protected boolean mCreateFullPath; - protected DataStorageManager mStorageManager; + protected FileDataStorageManager mStorageManager; /** * Constructor @@ -52,7 +53,7 @@ public class CreateFolderOperation extends RemoteOperation { * @param createFullPath 'True' means that all the ancestor folders should be created if don't exist yet. * @param storageManager Reference to the local database corresponding to the account where the file is contained. */ - public CreateFolderOperation(String remotePath, boolean createFullPath, DataStorageManager storageManager) { + public CreateFolderOperation(String remotePath, boolean createFullPath, FileDataStorageManager storageManager) { mRemotePath = remotePath; mCreateFullPath = createFullPath; mStorageManager = storageManager;