Package org.nuxeo.ecm.blob.azure
Class AzureFileStorage
- java.lang.Object
-
- org.nuxeo.ecm.blob.azure.AzureFileStorage
-
- All Implemented Interfaces:
FileStorage
public class AzureFileStorage extends Object implements FileStorage
- Since:
- 7.10
- Author:
- Arnaud Kervern
-
-
Constructor Summary
Constructors Constructor Description AzureFileStorage(com.microsoft.azure.storage.blob.CloudBlobContainer container, String prefix)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected static StringdecodeContentMD5(String contentMD5)booleanfetchFile(String digest, File file)Fetches a file based on its key.protected static booleanisBlobDigestCorrect(String digest, com.microsoft.azure.storage.blob.CloudBlockBlob blob)protected static booleanisBlobDigestCorrect(String digest, String contentMD5)protected static booleanisMissingKey(com.microsoft.azure.storage.StorageException e)voidstoreFile(String digest, File file)Stores a file based on a key.
-
-
-
Constructor Detail
-
AzureFileStorage
public AzureFileStorage(com.microsoft.azure.storage.blob.CloudBlobContainer container, String prefix)
-
-
Method Detail
-
storeFile
public void storeFile(String digest, File file) throws IOException
Description copied from interface:FileStorageStores a file based on a key.- Specified by:
storeFilein interfaceFileStorage- Parameters:
digest- the file keyfile- the file- Throws:
IOException- if a storage error occurred
-
fetchFile
public boolean fetchFile(String digest, File file) throws IOException
Description copied from interface:FileStorageFetches a file based on its key.- Specified by:
fetchFilein interfaceFileStorage- Parameters:
digest- the file keyfile- the file to use to store the fetched data- Returns:
trueif the file was fetched,falseif the file was not found- Throws:
IOException- if a storage error occurred
-
isMissingKey
protected static boolean isMissingKey(com.microsoft.azure.storage.StorageException e)
-
isBlobDigestCorrect
protected static boolean isBlobDigestCorrect(String digest, com.microsoft.azure.storage.blob.CloudBlockBlob blob)
-
isBlobDigestCorrect
protected static boolean isBlobDigestCorrect(String digest, String contentMD5)
-
decodeContentMD5
protected static String decodeContentMD5(String contentMD5)
-
-