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

org.apache.jackrabbit.oak.spi.mount.Mount Maven / Gradle / Ivy

/*
 * 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.spi.mount;

import aQute.bnd.annotation.ProviderType;

/**
 * A ContentRepository represents one big tree. A Mount
 * refers to a set of paths in that tree which are possibly
 * stored in a separate physical persistent stores. In a
 * default setup all paths belong to a default Mount.
 */
@ProviderType
public interface Mount {
    /**
     * Name of the mount. If this Mount
     * is the default mount, an empty string is returned
     */
    String getName();

    /**
     * Checks whether the mount is marked as read only.
     *
     * @return true if the mount is read only.
     */
    boolean isReadOnly();

    /**
     * Checks whether current mount is the default mount.
     * Default mount includes the root path and all other
     * paths which are not part of any other mount
     *
     * @return true if this mount represents the
     * default mount
     */
    boolean isDefault();

    /**
     * Returns fragment name which can be used to construct node name
     * used for storing meta content belonging to path under this
     * Mount. Such a node name would be used by NodeStore
     * to determine the storage for nodes under those paths.
     *
     * 

Fragment name is formatted as 'oak:mount-<mount name>' * *

For e.g. for mount name 'private' the fragment name would be * oak:mount-private. This can be then used to construct * node name like oak:mount-private-index and then any derived * content for path under this mount would be stored as child node under * oak:mount-private-index like /fooIndex/oak:mount-private-index/foo. * Such paths would then be stored in a separate store which would only be * storing paths belonging to that mount * *

If this Mount is the default mount, an empty string is returned * * @return node name prefix which can be used */ String getPathFragmentName(); /** * Checks if this mount supports mounting nodes containing the path fragment * (see {@link #getPathFragmentName()}). * * @return true if the path fragment mounts are supported */ boolean isSupportFragment(); /** * Checks if given path belongs to this Mount * * @param path path to check * @return true if path belong to this mount */ boolean isMounted(String path); /** * Checks if this mount falls under given path. For e.g. if a * mount consist of '/etc/config'. Then if path is *

    *
  • /etc - Then it returns true
  • *
  • /etc/config - Then it returns false
  • *
  • /lib - Then it returns false
  • *
* * @param path path to check * @return true if this Mount is rooted under given path */ boolean isUnder(String path); boolean isDirectlyUnder(String path); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy