Class ListBlobItemHolder
- java.lang.Object
-
- org.apache.druid.storage.azure.blob.ListBlobItemHolder
-
public class ListBlobItemHolder extends Object
Wrapper class forListBlobItem
interface, which was missing some useful functionality for telling whether the blob was a cloudBlob or not. This class was added mainly to make testing easier.
-
-
Constructor Summary
Constructors Constructor Description ListBlobItemHolder(com.microsoft.azure.storage.blob.ListBlobItem delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CloudBlobHolder
getCloudBlob()
String
getContainerName()
URI
getUri()
boolean
isCloudBlob()
String
toString()
-
-
-
Method Detail
-
getContainerName
public String getContainerName() throws URISyntaxException, com.microsoft.azure.storage.StorageException
- Throws:
URISyntaxException
com.microsoft.azure.storage.StorageException
-
getUri
public URI getUri()
-
getCloudBlob
public CloudBlobHolder getCloudBlob()
-
isCloudBlob
public boolean isCloudBlob()
-
-