Package org.bremersee.data.minio
Interface MinioObjectInfo
-
- All Superinterfaces:
MinioObjectId
- All Known Subinterfaces:
MinioMultipartFile
- All Known Implementing Classes:
MinioMultipartFileImpl
public interface MinioObjectInfo extends MinioObjectId
The minio object info interface.- Author:
- Christian Bremer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getBucket()
Gets bucket.String
getEtag()
Gets etag.OffsetDateTime
getLastModified()
Gets last modified time.String
getRegion()
Gets region.-
Methods inherited from interface org.bremersee.data.minio.MinioObjectId
getName, getVersionId
-
-
-
-
Method Detail
-
getBucket
String getBucket()
Gets bucket.- Returns:
- the bucket
-
getRegion
String getRegion()
Gets region.- Returns:
- the region
-
getEtag
String getEtag()
Gets etag.- Returns:
- the etag
-
getLastModified
OffsetDateTime getLastModified()
Gets last modified time.- Returns:
- the last modified time
-
-