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

org.apache.sling.serviceusermapping.ServiceUserMapper Maven / Gradle / Ivy

Go to download

Provides a service to map service names with optional service information to user names to be used to access repositories such as the JCR repository or the Sling ResourceResolver.

There is a newer version: 1.5.8
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.sling.serviceusermapping;

import org.osgi.annotation.versioning.ProviderType;
import org.osgi.framework.Bundle;

/**
 * The ServiceUserMapper service can be used to map a service
 * provided by a bundle to the ID of a user account used to access the
 * ResourceResolver used by the service to access its data.
 * 

* The goal of this service is to allow services to be implemented accessing the * storage with service-specific accounts which are tailored to allow the * service appropriate access without requiring administrative level access to * the storage. *

* In general a service is implement in a single bundle such as the JSP compiler * bundle. Other services may be implemented in multiple bundles. In certain * cases there may be sub-services requiring different access levels. For * example a couple of bundles may implement a "mail" service where each bundle * implements a part of the service such as the "smtp", "queuing", and * "delivery" sub services. Such sub services are identified with the * {@code subServiceName} parameter on the method calls. *

* In addition to allowing to phase out the use of * {@code ResourceResolver.getAdministrativeResourceResolver} and * {@code SlingRepository.loginAdministrative} it also allows to better account * for changes to the storage by the different services. *

* This service is not intended to be used by the general user but by * implementations of the {@code ResourceResolverFactory} and * {@code SlingRepository} services. *

* This service is not intended to be implemented by clients. * * @see Service Authentication */ @ProviderType public interface ServiceUserMapper { /** * Returns the ID of a user to access the data store on behalf of the * service. * * @param bundle The bundle implementing the service request access to * resources. * @param subServiceName Name of the sub service. This parameter is optional and * may be an empty string or {@code null}. * @return The ID of the user to use to provide access to the resources for * the service. This may be {@code null} if no particular user can * be derived for the service identified by the bundle and the * optional {@code serviceInfo}. */ String getServiceUserID(Bundle bundle, String subServiceName); /** * Returns the principal names to access the data store on behalf of the * service. * * @param bundle The bundle implementing the service request access to resources. * @param subServiceName Name of the sub service. This parameter is optional * and may be an empty string or {@code null}. * @return The principal names to use to provide access to the resources for * the service. This may be {@code null} if no mapping has been defined * for the service identified by the bundle and the optional {@code serviceInfo} * or if no principal names have been specified with the mapping. * In this case {@link #getServiceUserID(Bundle, String)} should be used instead. */ Iterable getServicePrincipalNames(Bundle bundle, String subServiceName); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy