Interface ResourceBasedBLOBStore
-
- All Superinterfaces:
BLOBStore
- All Known Implementing Classes:
BundleDbPersistenceManager.FSBlobStore
,FileSystemBLOBStore
public interface ResourceBasedBLOBStore extends BLOBStore
ResourceBasedBLOBStore
extends theBLOBStore
interface with the methodgetResource(String)
Note that The DataStore should nowadays be used instead of the BLOBStore.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FileSystemResource
getResource(String blobId)
Retrieves the BLOB data with the specified id as a permanent resource.
-
-
-
Method Detail
-
getResource
FileSystemResource getResource(String blobId) throws Exception
Retrieves the BLOB data with the specified id as a permanent resource.- Parameters:
blobId
- identifier of the BLOB data as returned byBLOBStore.createId(org.apache.jackrabbit.core.id.PropertyId , int)
- Returns:
- a resource representing the BLOB data
- Throws:
Exception
- if an error occurred
-
-