| org.enhydra.dm.api.DocumentStore
All known Subclasses: org.enhydra.dm.business.DocumentStoreImpl,
DocumentStore | public interface DocumentStore (Code) | | |
getDocStorePath | public String getDocStorePath()(Code) | | Getter for document store path
|
getLogger | public Log getLogger()(Code) | | Getter for logger.
|
loadDocumentContent | public byte[] loadDocumentContent(String documentFilePath) throws BaseException(Code) | | Load document content from document store.
Parameters: documentFilePath - throws: BaseException - |
saveDocumentContent | public String saveDocumentContent(String documentName, byte[] documentContent) throws BaseException(Code) | | Saving document content into document store for the first time
Parameters: documentName - Parameters: documentContent - throws: BaseException - |
saveDocumentContent | public String saveDocumentContent(String documentName, byte[] documentContent, String path) throws BaseException(Code) | | Saving document content into document store - overwrite existing
Parameters: documentName - Parameters: documentContent - Parameters: path - throws: BaseException - |
setDocStorePath | public void setDocStorePath(String docStorePath)(Code) | | Setter for document store path
Parameters: docStorePath - |
setLogger | public void setLogger(Log logger)(Code) | | Setter for logger.
Parameters: logger - |
|
|