All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.jackrabbit.oak.plugins.document.Collection Maven / Gradle / Ivy

There is a newer version: 1.62.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.jackrabbit.oak.plugins.document;

import javax.annotation.Nonnull;

/**
 * The collection types.
 *
 * @param  the document type
 */
public abstract class Collection {

    /**
     * The 'nodes' collection. It contains all the node data, with one document
     * per node, and the path as the primary key. Each document possibly
     * contains multiple revisions.
     * 

* Key: the path, value: the node data (possibly multiple revisions) *

* Old revisions are removed after some time, either by the process that * removed or updated the node, lazily when reading, or in a background * process. */ public static final Collection NODES = new Collection("nodes") { @Override @Nonnull public NodeDocument newDocument(DocumentStore store) { return new NodeDocument(store); } }; /** * The 'clusterNodes' collection contains the list of currently running * cluster nodes. The key is the clusterNodeId (0, 1, 2,...). */ public static final Collection CLUSTER_NODES = new Collection("clusterNodes") { @Override @Nonnull public ClusterNodeInfoDocument newDocument(DocumentStore store) { return new ClusterNodeInfoDocument(); } }; /** * The 'settings' collection contains setting/state data required for DocumentNodeStore */ public static final Collection SETTINGS = new Collection("settings") { @Override @Nonnull public Document newDocument(DocumentStore store) { return new Document(); } }; /** * The 'journal' collection contains documents with consolidated * diffs for changes performed by a cluster node between two background * updates. */ public static final Collection JOURNAL = new Collection("journal") { @Nonnull @Override public JournalEntry newDocument(DocumentStore store) { return new JournalEntry(store); } }; private final String name; public Collection(String name) { this.name = name; } @Override public String toString() { return name; } /** * @param store the document store. * @return a new document for this collection. */ @Nonnull public abstract T newDocument(DocumentStore store); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy