Uses of Class
org.apache.jackrabbit.oak.spi.toggle.Feature
-
Packages that use Feature Package Description org.apache.jackrabbit.oak.core org.apache.jackrabbit.oak.plugins.document org.apache.jackrabbit.oak.plugins.document.rdb Implementations ofDocumentStore
andBlobStore
for relational databases.org.apache.jackrabbit.oak.query org.apache.jackrabbit.oak.spi.toggle -
-
Uses of Feature in org.apache.jackrabbit.oak.core
Constructors in org.apache.jackrabbit.oak.core with parameters of type Feature Constructor Description ContentRepositoryImpl(@NotNull NodeStore nodeStore, @NotNull CommitHook commitHook, @NotNull String defaultWorkspaceName, QueryEngineSettings queryEngineSettings, @Nullable QueryIndexProvider indexProvider, @NotNull SecurityProvider securityProvider, @Nullable Descriptors baseDescriptors, @Nullable Feature classicMove)
Creates an content repository instance based on the given, already initialized components. -
Uses of Feature in org.apache.jackrabbit.oak.plugins.document
Methods in org.apache.jackrabbit.oak.plugins.document that return Feature Modifier and Type Method Description @Nullable Feature
DocumentNodeStoreBuilder. getCancelInvalidationFeature()
@Nullable Feature
DocumentNodeStoreBuilder. getDocStoreEmbeddedVerificationFeature()
Feature
DocumentNodeStoreBuilder. getDocStoreFullGCFeature()
@Nullable Feature
DocumentNodeStoreBuilder. getDocStoreThrottlingFeature()
@Nullable Feature
DocumentNodeStoreBuilder. getNoChildOrderCleanupFeature()
@Nullable Feature
DocumentNodeStoreBuilder. getPrefetchFeature()
Methods in org.apache.jackrabbit.oak.plugins.document with parameters of type Feature Modifier and Type Method Description T
DocumentNodeStoreBuilder. setCancelInvalidationFeature(@Nullable Feature cancelInvalidation)
T
DocumentNodeStoreBuilder. setDocStoreEmbeddedVerificationFeature(@Nullable Feature getDocStoreEmbeddedVerification)
T
DocumentNodeStoreBuilder. setDocStoreFullGCFeature(@Nullable Feature docStoreFullGC)
T
DocumentNodeStoreBuilder. setDocStoreThrottlingFeature(@Nullable Feature docStoreThrottling)
T
DocumentNodeStoreBuilder. setNoChildOrderCleanupFeature(@Nullable Feature noChildOrderCleanupFeature)
T
DocumentNodeStoreBuilder. setPrefetchFeature(@Nullable Feature prefetch)
-
Uses of Feature in org.apache.jackrabbit.oak.plugins.document.rdb
Methods in org.apache.jackrabbit.oak.plugins.document.rdb that return Feature Modifier and Type Method Description @Nullable Feature
RDBDocumentNodeStoreBuilder. getDocStoreEmbeddedVerificationFeature()
@Nullable Feature
RDBDocumentNodeStoreBuilder. getDocStoreFullGCFeature()
Methods in org.apache.jackrabbit.oak.plugins.document.rdb with parameters of type Feature Modifier and Type Method Description RDBDocumentNodeStoreBuilder
RDBDocumentNodeStoreBuilder. setDocStoreEmbeddedVerificationFeature(@Nullable Feature getDocStoreEmbeddedVerification)
RDBDocumentNodeStoreBuilder
RDBDocumentNodeStoreBuilder. setDocStoreFullGCFeature(@Nullable Feature docStoreFullGC)
-
Uses of Feature in org.apache.jackrabbit.oak.query
Methods in org.apache.jackrabbit.oak.query with parameters of type Feature Modifier and Type Method Description void
QueryEngineSettings. setImprovedIsNullCostFeature(@Nullable Feature feature)
void
QueryEngineSettings. setPrefetchFeature(@Nullable Feature prefetch)
-
Uses of Feature in org.apache.jackrabbit.oak.spi.toggle
Methods in org.apache.jackrabbit.oak.spi.toggle that return Feature Modifier and Type Method Description static Feature
Feature. newFeature(String name, Whiteboard whiteboard)
Creates a newFeature
with the given name and registers the correspondingFeatureToggle
on theWhiteboard
.
-