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

com.day.cq.wcm.webservicesupport.ConfigurationManagerFactory Maven / Gradle / Ivy

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
/*************************************************************************
 *
 * ADOBE CONFIDENTIAL
 * __________________
 *
 *  Copyright 2014 Adobe Systems Incorporated
 *  All Rights Reserved.
 *
 * NOTICE:  All information contained herein is, and remains
 * the property of Adobe Systems Incorporated and its suppliers,
 * if any.  The intellectual and technical concepts contained
 * herein are proprietary to Adobe Systems Incorporated and its
 * suppliers and are protected by trade secret or copyright law.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Adobe Systems Incorporated.
 **************************************************************************/
package com.day.cq.wcm.webservicesupport;

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

import aQute.bnd.annotation.ProviderType;

/**
 * The ConfigurationManagerFactory provides a way of obtaining a ConfigurationManager instance which
 * is backed by a specific ResourceResolver
 * 
 * 

* In the context of OSGi services, using this interface is preferred over the ConfigurationManager service, as * it returns a ConfigurationManager instance which uses the caller's session to read repository resources. *

* */ @ProviderType public interface ConfigurationManagerFactory { /** * Returns a ConfigurationManager instance backed by the specified ResourceResolver * * @param resolver the resource resolver, must not be null * @return a ConfigurationManager instance, never null */ ConfigurationManager getConfigurationManager(ResourceResolver resolver); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy