Package com.logicaldoc.core.store
Class AbstractStore
java.lang.Object
com.logicaldoc.core.store.AbstractStore
- All Implemented Interfaces:
Store,Comparable<Store>
- Direct Known Subclasses:
FSStore
Common methods for all the Store implementations.
- Since:
- 7.6.4
- Author:
- Marco Meschieri - LogicalDOC
-
Method Summary
Modifier and TypeMethodDescriptionintvoiddestroy()Destroy methodbooleanbyte[]Obtains the document's raw bytes for the specified resourceintgetId()The unique identifierReturns the map of parametersgetResourceName(long docId, String fileVersion, String suffix) Computes the resource name inside the containergetResourceName(Document doc, String fileVersion, String suffix) Computes the resource name inside the containerRetrieves the stores definitions grouped by typeObtains the document's content as string for the specified resourceinthashCode()voidinit()Initialization methodbooleanTests if the store is enablednewStore(int id) Instantiate a new store and fully configures it.+voidsetConfig(ContextProperties config) voidsetId(int id) Sets the unique identifiervoidStores a filebooleantest()Tests if the store can read and writetoString()voidwriteToFile(long docId, String resource, File out) Writes the specified resource in a filevoidwriteToStream(long docId, String resource, OutputStream output) Writes the specified resource in an output streamvoidwriteToStream(long docId, String resource, OutputStream output, long start, long length) Writes the specified resource in an output streamMethods inherited from interface com.logicaldoc.core.store.Store
delete, delete, exists, getBytes, getParameterNames, getStream, getTotalSize, listResources, moveResourcesToStore, size, store
-
Method Details
-
getConfig
-
setConfig
-
getId
public int getId()Description copied from interface:StoreThe unique identifier -
setId
public void setId(int id) Description copied from interface:StoreSets the unique identifier -
compareTo
- Specified by:
compareToin interfaceComparable<Store>
-
hashCode
public int hashCode() -
equals
-
store
Description copied from interface:StoreStores a file- Specified by:
storein interfaceStore- Parameters:
file- the file to storedocId- identifier of the documentresource- name of the resource- Throws:
IOException- the content cannot be stored- See Also:
-
getBytes
Description copied from interface:StoreObtains the document's raw bytes for the specified resource- Specified by:
getBytesin interfaceStore- Parameters:
docId- The document's identifierresource- Name of the resource- Returns:
- The document file's bytes
- Throws:
IOException- cannot open the resource to get the bytes
-
writeToStream
public void writeToStream(long docId, String resource, OutputStream output, long start, long length) throws IOException Description copied from interface:StoreWrites the specified resource in an output stream- Specified by:
writeToStreamin interfaceStore- Parameters:
docId- The document's identifierresource- Name of the resourceoutput- The output streamstart- Index of the starting bytelength- Total packet length- Throws:
IOException- error writing the stream or reading the resource
-
writeToStream
Description copied from interface:StoreWrites the specified resource in an output stream- Specified by:
writeToStreamin interfaceStore- Parameters:
docId- The document's identifierresource- Name of the resourceoutput- The output stream- Throws:
IOException- error writing the stream or reading the resource
-
writeToFile
Description copied from interface:StoreWrites the specified resource in a file- Specified by:
writeToFilein interfaceStore- Parameters:
docId- The document identifierresource- Name of the resourceout- File that will receive the resource's content- Throws:
IOException- error writing the file or reading the resource
-
getString
Description copied from interface:StoreObtains the document's content as string for the specified resource -
getResourceName
Description copied from interface:StoreComputes the resource name inside the container- Specified by:
getResourceNamein interfaceStore- Parameters:
doc- The document representationfileVersion- The file version (use null for the latest version)suffix- The file suffix (use null if you want the exact document file)- Returns:
- The document's resource name
-
getResourceName
Description copied from interface:StoreComputes the resource name inside the container- Specified by:
getResourceNamein interfaceStore- Parameters:
docId- The document identifierfileVersion- The file version (use null for the latest version)suffix- The file suffix (use null if you want the exact document file)- Returns:
- The document's resource name
-
getParameters
Description copied from interface:StoreReturns the map of parameters- Specified by:
getParametersin interfaceStore- Returns:
- a map with settings setting_name - setting_value
-
test
public boolean test()Description copied from interface:StoreTests if the store can read and write -
isEnabled
public boolean isEnabled()Description copied from interface:StoreTests if the store is enabled -
toString
-
init
@PostConstruct public void init()Description copied from interface:StoreInitialization method -
destroy
@PreDestroy public void destroy()Description copied from interface:StoreDestroy method -
newStore
Instantiate a new store and fully configures it.+ -
getStoreDefinitions
Description copied from interface:StoreRetrieves the stores definitions grouped by type- Specified by:
getStoreDefinitionsin interfaceStore- Returns:
- a map with definitions type - store prototype
-