Class OracleCloudStorageEntry

java.lang.Object
io.micronaut.objectstorage.oraclecloud.OracleCloudStorageEntry
All Implemented Interfaces:
ObjectStorageEntry<com.oracle.bmc.objectstorage.responses.GetObjectResponse>

public class OracleCloudStorageEntry extends Object implements ObjectStorageEntry<com.oracle.bmc.objectstorage.responses.GetObjectResponse>
An ObjectStorageEntry implementation for Oracle Cloud Storage.
Since:
1.0
Author:
Pavol Gressa
  • Constructor Details

    • OracleCloudStorageEntry

      public OracleCloudStorageEntry(String key, com.oracle.bmc.objectstorage.responses.GetObjectResponse objectResponse)
  • Method Details

    • getKey

      @NonNull public @NonNull String getKey()
      Description copied from interface: ObjectStorageEntry
      The object path on object storage. For example /path/to
      Specified by:
      getKey in interface ObjectStorageEntry<com.oracle.bmc.objectstorage.responses.GetObjectResponse>
      Returns:
      object path or empty string if the object is placed at the root of bucket
    • getInputStream

      @NonNull public @NonNull InputStream getInputStream()
      Specified by:
      getInputStream in interface ObjectStorageEntry<com.oracle.bmc.objectstorage.responses.GetObjectResponse>
      Returns:
      The object content.
    • getNativeEntry

      @NonNull public @NonNull com.oracle.bmc.objectstorage.responses.GetObjectResponse getNativeEntry()
      Specified by:
      getNativeEntry in interface ObjectStorageEntry<com.oracle.bmc.objectstorage.responses.GetObjectResponse>
      Returns:
      The underlying cloud vendor-specific response object.
    • getMetadata

      @NonNull public @NonNull Map<String,String> getMetadata()
      Specified by:
      getMetadata in interface ObjectStorageEntry<com.oracle.bmc.objectstorage.responses.GetObjectResponse>
      Returns:
      a map with key-value pairs that were stored along the file. An empty map by default.
    • getContentType

      @NonNull public @NonNull Optional<String> getContentType()
      Specified by:
      getContentType in interface ObjectStorageEntry<com.oracle.bmc.objectstorage.responses.GetObjectResponse>
      Returns:
      the MIME type of the entry.