Package org.jclouds.azureblob.domain
Interface BlobProperties
-
- All Superinterfaces:
Comparable<BlobProperties>
- All Known Subinterfaces:
MutableBlobProperties
- All Known Implementing Classes:
BlobPropertiesImpl
,MutableBlobPropertiesImpl
public interface BlobProperties extends Comparable<BlobProperties>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getContainer()
ContentMetadata
getContentMetadata()
String
getETag()
Date
getLastModified()
LeaseStatus
getLeaseStatus()
Map<String,String>
getMetadata()
String
getName()
AccessTier
getTier()
BlobType
getType()
URI
getUrl()
-
Methods inherited from interface java.lang.Comparable
compareTo
-
-
-
-
Method Detail
-
getType
BlobType getType()
-
getTier
AccessTier getTier()
- Returns:
- access tier or null if not set
-
getLeaseStatus
LeaseStatus getLeaseStatus()
-
getUrl
URI getUrl()
-
getName
String getName()
-
getContainer
String getContainer()
-
getLastModified
Date getLastModified()
-
getETag
String getETag()
-
getContentMetadata
ContentMetadata getContentMetadata()
-
-