Class CdOcket

java.lang.Object
com.jcabi.s3.cached.CdOcket
All Implemented Interfaces:
Ocket, Comparable<Ocket>

@Immutable @Loggable(1) public final class CdOcket extends Object implements Ocket
Cached ocket.
Since:
0.8
  • Constructor Details

    • CdOcket

      public CdOcket(Ocket okt)
      Public ctor.
      Parameters:
      okt - Ocket original
  • Method Details

    • toString

      public String toString()
      Overrides:
      toString in class Object
    • bucket

      public Bucket bucket()
      Description copied from interface: Ocket
      Get bucket we're in.
      Specified by:
      bucket in interface Ocket
      Returns:
      Bucket
    • key

      public String key()
      Description copied from interface: Ocket
      Get object key.
      Specified by:
      key in interface Ocket
      Returns:
      Key
    • meta

      @Cacheable public software.amazon.awssdk.services.s3.model.HeadObjectResponse meta() throws IOException
      Description copied from interface: Ocket
      Object metadata.

      Throws OcketNotFoundException if this object doesn't exist in S3 bucket.

      Specified by:
      meta in interface Ocket
      Returns:
      Metadata
      Throws:
      IOException - If fails
    • exists

      @Cacheable public boolean exists() throws IOException
      Description copied from interface: Ocket
      Check whether this S3 object exists.
      Specified by:
      exists in interface Ocket
      Returns:
      TRUE if it exists in S3, FALSE otherwise
      Throws:
      IOException - If fails
    • read

      public void read(OutputStream output) throws IOException
      Description copied from interface: Ocket
      Read content.

      Throws OcketNotFoundException if this object doesn't exist in S3 bucket.

      Specified by:
      read in interface Ocket
      Parameters:
      output - Where to write
      Throws:
      IOException - If fails
    • write

      @FlushAfter public void write(InputStream input, software.amazon.awssdk.services.s3.model.HeadObjectResponse meta) throws IOException
      Description copied from interface: Ocket
      Write new content to the object.
      Specified by:
      write in interface Ocket
      Parameters:
      input - Where to get content
      meta - Metadata to save
      Throws:
      IOException - If fails
    • compareTo

      public int compareTo(Ocket ocket)
      Specified by:
      compareTo in interface Comparable<Ocket>