JCLOUDS-1065: Deprecate fake directory support

Superseded by prefix and delimiter support.
This commit is contained in:
Andrew Gaul 2016-10-26 21:28:05 -07:00
parent 78b3120e5e
commit 69aa5d6426
1 changed files with 6 additions and 0 deletions

View File

@ -173,7 +173,9 @@ public interface BlobStore {
* container where the directory resides * container where the directory resides
* @param directory * @param directory
* full path to the directory * full path to the directory
* @deprecated use prefix and delimiter instead
*/ */
@Deprecated
boolean directoryExists(String container, String directory); boolean directoryExists(String container, String directory);
/** /**
@ -183,7 +185,9 @@ public interface BlobStore {
* container to create the directory in * container to create the directory in
* @param directory * @param directory
* full path to the directory * full path to the directory
* @deprecated use prefix and delimiter instead
*/ */
@Deprecated
void createDirectory(String container, String directory); void createDirectory(String container, String directory);
/** /**
@ -193,7 +197,9 @@ public interface BlobStore {
* container to delete the directory from * container to delete the directory from
* @param directory * @param directory
* full path to the directory to delete * full path to the directory to delete
* @deprecated use prefix and delimiter instead
*/ */
@Deprecated
void deleteDirectory(String containerName, String name); void deleteDirectory(String containerName, String name);
/** /**