Package org.apache.jackrabbit.core.data
Interface MultiDataStoreAware
-
- All Known Implementing Classes:
CachingDataStore,CachingFDS,DbDataStore,DerbyDataStore,FileDataStore,S3DataStore,VFSDataStore
public interface MultiDataStoreAwareTo use a DataStore within a MultiDataStore it must implement this MultiDataStoreAware Interface. It extends a DataStore to delete a single DataRecord.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddeleteRecord(DataIdentifier identifier)Deletes a single DataRecord based on the given identifier.
-
-
-
Method Detail
-
deleteRecord
void deleteRecord(DataIdentifier identifier) throws DataStoreException
Deletes a single DataRecord based on the given identifier. Delete will only be used by theMultiDataStore.MoveDataTask.- Parameters:
identifier- data identifier- Throws:
DataStoreException- if the data store could not be accessed, or if the given identifier is invalid
-
-