in src/main/java/org/apache/sling/jcr/oak/server/internal/OakSlingRepositoryManager.java [196:210]
private void activate(final OakSlingRepositoryManagerConfiguration configuration, final ComponentContext componentContext) {
this.configuration = configuration;
this.componentContext = componentContext;
final BundleContext bundleContext = componentContext.getBundleContext();
final String defaultWorkspace = configuration.defaultWorkspace();
final boolean disableLoginAdministrative = !configuration.admin_login_enabled();
if (configuration.oak_observation_limitCommitRate()) {
commitRateLimiter = new CommitRateLimiter();
}
this.nodeAggregatorRegistration = bundleContext.registerService(NodeAggregator.class, getNodeAggregator(), null);
super.start(bundleContext, new Config(defaultWorkspace, disableLoginAdministrative));
}