/**
  * Check that the object exists remotely
  * 
  * @return boolean
  */
 public function exists()
 {
     $exists = $this->s3Service->doesObjectExist($this->bucket, $this->getId());
     return $exists;
 }