This is an automated email from the ASF dual-hosted git repository. thomasm pushed a commit to branch OAK-10341 in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
commit fa2542305e3ea18d1c72027847eec9f606361e69 Author: Thomas Mueller <[email protected]> AuthorDate: Fri Jul 7 09:21:03 2023 +0200 OAK-10341 TreeStore --- .../oak/index/indexer/document/tree/TreeStore.java | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/tree/TreeStore.java b/oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/tree/TreeStore.java new file mode 100644 index 0000000000..750ac749e8 --- /dev/null +++ b/oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/tree/TreeStore.java @@ -0,0 +1,41 @@ +/* + * 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.index.indexer.document.tree; + +import java.io.Closeable; +import java.io.IOException; +import java.util.Iterator; + +import org.apache.jackrabbit.oak.index.indexer.document.NodeStateEntry; + +public class TreeStore implements Iterable<NodeStateEntry>, Closeable { + + @Override + public void close() throws IOException { + // TODO + + } + + @Override + public Iterator<NodeStateEntry> iterator() { + // TODO + return null; + } + +}
