Uses of Interface
org.apache.jackrabbit.core.data.DataStore
-
Packages that use DataStore Package Description org.apache.jackrabbit.aws.ext.ds org.apache.jackrabbit.core Contains the core classes that provide the implementation of the JCR API.org.apache.jackrabbit.core.config org.apache.jackrabbit.core.data org.apache.jackrabbit.core.data.db org.apache.jackrabbit.core.gc org.apache.jackrabbit.core.persistence org.apache.jackrabbit.core.persistence.util org.apache.jackrabbit.core.session org.apache.jackrabbit.core.value org.apache.jackrabbit.vfs.ext.ds -
-
Uses of DataStore in org.apache.jackrabbit.aws.ext.ds
Classes in org.apache.jackrabbit.aws.ext.ds that implement DataStore Modifier and Type Class Description class
S3DataStore
An Amazon S3 data store. -
Uses of DataStore in org.apache.jackrabbit.core
Methods in org.apache.jackrabbit.core that return DataStore Modifier and Type Method Description DataStore
RepositoryContext. getDataStore()
Returns the data store of this repository, ornull
if a data store is not configured. -
Uses of DataStore in org.apache.jackrabbit.core.config
Methods in org.apache.jackrabbit.core.config that return DataStore Modifier and Type Method Description DataStore
RepositoryConfig. getDataStore()
Creates and returns the configured data store. -
Uses of DataStore in org.apache.jackrabbit.core.data
Classes in org.apache.jackrabbit.core.data that implement DataStore Modifier and Type Class Description class
AbstractDataStore
class
CachingDataStore
A caching data store that consists ofLocalCache
andBackend
.class
CachingFDS
class
FileDataStore
Simple file-based data store.class
MultiDataStore
A MultiDataStore can handle two independent DataStores.Methods in org.apache.jackrabbit.core.data that return DataStore Modifier and Type Method Description DataStore
DataStoreFactory. getDataStore()
Creates, initializes, and returns aDataStore
instance for use by the repository.Methods in org.apache.jackrabbit.core.data with parameters of type DataStore Modifier and Type Method Description void
MultiDataStore. setArchiveDataStore(DataStore dataStore)
Setter for the archive dataStorevoid
MultiDataStore. setPrimaryDataStore(DataStore dataStore)
Setter for the primary dataStore -
Uses of DataStore in org.apache.jackrabbit.core.data.db
Classes in org.apache.jackrabbit.core.data.db that implement DataStore Modifier and Type Class Description class
DbDataStore
A data store implementation that stores the records in a database using JDBC.class
DerbyDataStore
The Derby data store closes the database when the data store is closed (embedded databases only). -
Uses of DataStore in org.apache.jackrabbit.core.gc
Methods in org.apache.jackrabbit.core.gc that return DataStore Modifier and Type Method Description DataStore
GarbageCollector. getDataStore()
Get the data store if one is used.Constructors in org.apache.jackrabbit.core.gc with parameters of type DataStore Constructor Description GarbageCollector(RepositoryContext context, DataStore dataStore, IterablePersistenceManager[] list, SessionImpl[] sessionList)
Create a new garbage collector. -
Uses of DataStore in org.apache.jackrabbit.core.persistence
Methods in org.apache.jackrabbit.core.persistence that return DataStore Modifier and Type Method Description DataStore
PMContext. getDataStore()
Returns the data storeConstructors in org.apache.jackrabbit.core.persistence with parameters of type DataStore Constructor Description PersistenceCopier(PersistenceManager source, PersistenceManager target, DataStore store)
Creates a tool for copying content from one persistence manager to another.PMContext(File homeDir, FileSystem fs, NodeId rootNodeId, NamespaceRegistry nsReg, NodeTypeRegistry ntReg, DataStore dataStore, RepositoryStatisticsImpl stats)
Creates a newPMContext
. -
Uses of DataStore in org.apache.jackrabbit.core.persistence.util
Fields in org.apache.jackrabbit.core.persistence.util declared as DataStore Modifier and Type Field Description protected DataStore
BundleBinding. dataStore
Data store for binary properties.Constructors in org.apache.jackrabbit.core.persistence.util with parameters of type DataStore Constructor Description BundleBinding(ErrorHandling errorHandling, BLOBStore blobStore, StringIndex nsIndex, StringIndex nameIndex, DataStore dataStore)
Creates a new bundle binding -
Uses of DataStore in org.apache.jackrabbit.core.session
Methods in org.apache.jackrabbit.core.session that return DataStore Modifier and Type Method Description DataStore
SessionContext. getDataStore()
Returns the data store of this repository, ornull
if a data store is not configured. -
Uses of DataStore in org.apache.jackrabbit.core.value
Methods in org.apache.jackrabbit.core.value with parameters of type DataStore Modifier and Type Method Description static InternalValue
InternalValue. create(InputStream value, DataStore store)
Create an internal value that is stored in the data store (if enabled).static InternalValue
InternalValue. create(Value value, NamePathResolver resolver, DataStore store)
Create a new internal value from the given JCR value.static InternalValue
InternalValue. create(DataStore store, String id)
Create a binary object with the given identifier.Constructors in org.apache.jackrabbit.core.value with parameters of type DataStore Constructor Description ValueFactoryImpl(NamePathResolver resolver, DataStore store)
Constructs a newValueFactoryQImpl
based on an existing SPIQValueFactory
and aNamePathResolver
. -
Uses of DataStore in org.apache.jackrabbit.vfs.ext.ds
Classes in org.apache.jackrabbit.vfs.ext.ds that implement DataStore Modifier and Type Class Description class
VFSDataStore
Commons VFS based data store.
-