Package com.woorea.openstack.swift.model
Class Object
- java.lang.Object
-
- com.woorea.openstack.swift.model.Object
-
- All Implemented Interfaces:
Serializable
public class Object extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Object()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetBytes()StringgetContentType()StringgetHash()CalendargetLastModified()StringgetName()StringgetSubdir()voidsetBytes(int bytes)voidsetContentType(String contentType)voidsetHash(String hash)voidsetLastModified(Calendar lastModified)voidsetName(String name)voidsetSubdir(String subdir)
-
-
-
Method Detail
-
getSubdir
public String getSubdir()
- Returns:
- the subdir
-
setSubdir
public void setSubdir(String subdir)
- Parameters:
subdir- the subdir to set
-
getName
public String getName()
- Returns:
- the name
-
setName
public void setName(String name)
- Parameters:
name- the name to set
-
getHash
public String getHash()
- Returns:
- the hash
-
setHash
public void setHash(String hash)
- Parameters:
hash- the hash to set
-
getBytes
public int getBytes()
- Returns:
- the bytes
-
setBytes
public void setBytes(int bytes)
- Parameters:
bytes- the bytes to set
-
getContentType
public String getContentType()
- Returns:
- the contentType
-
setContentType
public void setContentType(String contentType)
- Parameters:
contentType- the contentType to set
-
getLastModified
public Calendar getLastModified()
- Returns:
- the lastModified
-
setLastModified
public void setLastModified(Calendar lastModified)
- Parameters:
lastModified- the lastModified to set
-
-