public interface BlobObject
Modifier and Type | Interface and Description |
---|---|
static interface |
BlobObject.BlobAddress
This interface represent the address information of a corresponding BlobObject.
|
Modifier and Type | Method and Description |
---|---|
InputStream |
getBinaryStream()
retrieves the binary related to this Binary Object
|
BlobObject.BlobAddress |
getBlobAddress()
Returns the db address for a given blob object.
|
String |
getFilename()
Gets the filename related to this binary object
|
String |
getFoldername()
Gets the foler name of the binary Object; the value returned is the absolute path of where the blob/binary is stored
|
List<WebReference> |
getWebReferences()
Gets the WebReference related to this binary object
|
void |
setBinaryData(byte[] bytes)
sets the binary related to this Binary Object
|
void |
setFilename(String filename)
Sets the filename related to this binary object
|
void |
setFoldername(String foldername)
Sets the foler name of the binary Object; the value returned is the absolute path of where the blob/binary is stored
|
void |
setWebReferences(List<WebReference> webReference)
Sets the WebReference related to this binary object
|
String getFilename()
void setFilename(String filename)
filename
- the fileNameString getFoldername()
void setFoldername(String foldername)
foldername
- folder nameInputStream getBinaryStream()
void setBinaryData(byte[] bytes)
bytes
- the binaryList<WebReference> getWebReferences()
void setWebReferences(List<WebReference> webReference)
webReference
- the webReferenceBlobObject.BlobAddress getBlobAddress()