本文整理了Java中org.apache.jackrabbit.oak.jcr.Jcr.ensureRepositoryIsNotCreated()
方法的一些代码示例,展示了Jcr.ensureRepositoryIsNotCreated()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Jcr.ensureRepositoryIsNotCreated()
方法的具体详情如下:
包路径:org.apache.jackrabbit.oak.jcr.Jcr
类名称:Jcr
方法名:ensureRepositoryIsNotCreated
暂无
代码示例来源:origin: apache/jackrabbit-oak
@NotNull
public Jcr withObservationQueueLength(int observationQueueLength) {
ensureRepositoryIsNotCreated();
this.observationQueueLength = observationQueueLength;
return this;
}
代码示例来源:origin: apache/jackrabbit-oak
@NotNull
public Jcr withFastQueryResultSize(boolean fastQueryResultSize) {
ensureRepositoryIsNotCreated();
this.fastQueryResultSize = fastQueryResultSize;
return this;
}
代码示例来源:origin: apache/jackrabbit-oak
@NotNull
public final Jcr with(@NotNull ScheduledExecutorService executor) {
ensureRepositoryIsNotCreated();
this.scheduledExecutor = checkNotNull(executor);
return this;
}
代码示例来源:origin: apache/jackrabbit-oak
@NotNull
public Jcr with(@NotNull QueryLimits qs) {
ensureRepositoryIsNotCreated();
this.queryEngineSettings = checkNotNull(qs);
return this;
}
代码示例来源:origin: apache/jackrabbit-oak
@NotNull
public Jcr with(@NotNull Whiteboard whiteboard) {
ensureRepositoryIsNotCreated();
this.whiteboard = checkNotNull(whiteboard);
return this;
}
代码示例来源:origin: org.apache.jackrabbit/oak-jcr
@NotNull
public Jcr with(@NotNull Clusterable c) {
ensureRepositoryIsNotCreated();
this.clusterable = checkNotNull(c);
return this;
}
代码示例来源:origin: org.apache.jackrabbit/oak-jcr
@NotNull
public final Jcr with(@NotNull SecurityProvider securityProvider) {
ensureRepositoryIsNotCreated();
this.securityProvider = checkNotNull(securityProvider);
return this;
}
代码示例来源:origin: org.apache.jackrabbit/oak-jcr
@NotNull
public Jcr with(@NotNull QueryLimits qs) {
ensureRepositoryIsNotCreated();
this.queryEngineSettings = checkNotNull(qs);
return this;
}
代码示例来源:origin: org.apache.sling/org.apache.sling.testing.sling-mock-oak
@Nonnull
public Jcr with(@Nonnull CommitRateLimiter commitRateLimiter) {
ensureRepositoryIsNotCreated();
this.commitRateLimiter = checkNotNull(commitRateLimiter);
return this;
}
代码示例来源:origin: apache/jackrabbit-oak
@NotNull
public Jcr with(@NotNull Clusterable c) {
ensureRepositoryIsNotCreated();
this.clusterable = checkNotNull(c);
return this;
}
代码示例来源:origin: org.apache.jackrabbit/oak-jcr
@NotNull
public final Jcr with(@NotNull RepositoryInitializer initializer) {
ensureRepositoryIsNotCreated();
repositoryInitializers.add(checkNotNull(initializer));
return this;
}
代码示例来源:origin: org.apache.sling/org.apache.sling.testing.sling-mock-oak
@Nonnull
public final Jcr with(@Nonnull CommitHook hook) {
ensureRepositoryIsNotCreated();
commitHooks.add(checkNotNull(hook));
return this;
}
代码示例来源:origin: apache/jackrabbit-oak
@NotNull
public final Jcr with(@NotNull Observer observer) {
ensureRepositoryIsNotCreated();
observers.add(checkNotNull(observer));
return this;
}
代码示例来源:origin: apache/jackrabbit-oak
@NotNull
public final Jcr with(@NotNull QueryIndexProvider provider) {
ensureRepositoryIsNotCreated();
queryIndexProviders.add(checkNotNull(provider));
return this;
}
代码示例来源:origin: apache/jackrabbit-oak
@NotNull
public final Jcr with(@NotNull IndexEditorProvider indexEditorProvider) {
ensureRepositoryIsNotCreated();
indexEditorProviders.add(checkNotNull(indexEditorProvider));
return this;
}
代码示例来源:origin: apache/jackrabbit-oak
@NotNull
public final Jcr with(@NotNull Editor editor) {
ensureRepositoryIsNotCreated();
editors.add(checkNotNull(editor));
return this;
}
代码示例来源:origin: org.apache.jackrabbit/oak-jcr
@NotNull
public final Jcr with(@NotNull EditorProvider provider) {
ensureRepositoryIsNotCreated();
editorProviders.add(checkNotNull(provider));
return this;
}
代码示例来源:origin: apache/jackrabbit-oak
/**
* @deprecated Use {@link #withAsyncIndexing(String, long)} instead
*/
@NotNull
@Deprecated
public Jcr withAsyncIndexing() {
ensureRepositoryIsNotCreated();
oak.withAsyncIndexing();
return this;
}
代码示例来源:origin: apache/jackrabbit-oak
@NotNull
public Jcr withAsyncIndexing(@NotNull String name, long delayInSeconds) {
ensureRepositoryIsNotCreated();
oak.withAsyncIndexing(name, delayInSeconds);
return this;
}
代码示例来源:origin: org.apache.jackrabbit/oak-jcr
public Jcr withAtomicCounter() {
ensureRepositoryIsNotCreated();
oak.withAtomicCounter();
return this;
}
内容来源于网络,如有侵权,请联系作者删除!