com.amazon.s3
Class ListEntry

java.lang.Object
  extended bycom.amazon.s3.ListEntry

public class ListEntry
extends java.lang.Object

A structure representing a single object stored in S3. Returned as a part of ListBucketResponse.


Field Summary
 java.lang.String eTag
          The object's ETag, which can be used for conditional GETs.
 java.lang.String key
          The name of the object
 java.util.Date lastModified
          The date at which the object was last modified.
 Owner owner
          The object's owner
 long size
          The size of the object in bytes.
 java.lang.String storageClass
          The object's storage class
 
Constructor Summary
ListEntry()
           
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

key

public java.lang.String key
The name of the object


lastModified

public java.util.Date lastModified
The date at which the object was last modified.


eTag

public java.lang.String eTag
The object's ETag, which can be used for conditional GETs.


size

public long size
The size of the object in bytes.


storageClass

public java.lang.String storageClass
The object's storage class


owner

public Owner owner
The object's owner

Constructor Detail

ListEntry

public ListEntry()
Method Detail

toString

public java.lang.String toString()