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

org.apache.sling.resourcemerger.spi.MergedResourcePicker 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.sling.resourcemerger.spi;

import java.util.List;

import org.apache.sling.api.resource.Resource;
import org.apache.sling.api.resource.ResourceProviderFactory;
import org.apache.sling.api.resource.ResourceResolver;

import aQute.bnd.annotation.ConsumerType;

/**
 * Service interface which can be implemented to define an algorithm used to pick
 * resources to be merged. For each picker service, a separate {@link ResourceProviderFactory}
 * will be exposed at the MERGE_ROOT of the picker.
 * @deprecated
 */
@Deprecated
@ConsumerType
public interface MergedResourcePicker {

    /**
     * Service property name identifying the root path for the merged resources.
     * By convention, starts, with /mnt, although this is by no means required.
     * The value of this service property must be of type String and must not end
     * in a slash.
     */
    String MERGE_ROOT = MergedResourcePicker2.MERGE_ROOT;

    /**
     * Service property name specifying whether the resources are read-only
     * or support CRUD operations. If not specified this property defaults
     * to true. The value of this property must be of type
     * Boolean.
     */
    String READ_ONLY = MergedResourcePicker2.READ_ONLY;

    /**
     * Service property name specifying whether the parent hierarchy is
     * traversed to check for hiding properties. If not specified this
     * property defaults to false. The value of this
     * property must be of type Boolean.
     */
    String TRAVERSE_PARENT = MergedResourcePicker2.TRAVERSE_PARENT;

    /**
     * @see #pickResources(ResourceResolver, String, Resource)
     */
    List pickResources(ResourceResolver resolver, String relativePath);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy