Class DeleteResult


  • public class DeleteResult
    extends java.lang.Object
    Class to convey information about a successful deletion from NamedBlobDb.
    • Constructor Summary

      Constructors 
      Constructor Description
      DeleteResult​(java.lang.String blobId, boolean alreadyDeleted)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getBlobId()  
      boolean isAlreadyDeleted()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DeleteResult

        public DeleteResult​(java.lang.String blobId,
                            boolean alreadyDeleted)
        Parameters:
        blobId - the blob ID from the deleted record.
        alreadyDeleted - true if the record indicated that the blob was already deleted before this call.
    • Method Detail

      • getBlobId

        public java.lang.String getBlobId()
        Returns:
        the blob ID from the deleted record.
      • isAlreadyDeleted

        public boolean isAlreadyDeleted()
        Returns:
        true if the record indicated that the blob was already deleted before this call.