Daisy Open Source CMS

org.outerj.daisy.publisher
Interface BlobInfo


public interface BlobInfo


Method Summary
 void dispose()
          This method MUST be called by the user of the BlobInfo object when it doesn't need it any longer, in order to avoid resource leakage.
 String getFilename()
           
 InputStream getInputStream()
          Note: it is the responsibility of the caller to close the input stream to avoid resource leakage.
 Date getLastModified()
           
 String getMimeType()
           
 long getSize()
           
 

Method Detail

getLastModified

Date getLastModified()

getMimeType

String getMimeType()

getFilename

String getFilename()

getSize

long getSize()

getInputStream

InputStream getInputStream()
                           throws RepositoryException,
                                  IOException
Note: it is the responsibility of the caller to close the input stream to avoid resource leakage.

Throws:
RepositoryException
IOException

dispose

void dispose()
This method MUST be called by the user of the BlobInfo object when it doesn't need it any longer, in order to avoid resource leakage.


Daisy Open Source CMS