net.shibboleth.utilities.java.support.security.DelegatingAccessControlService Maven / Gradle / Ivy
/*
* Licensed to the University Corporation for Advanced Internet Development,
* Inc. (UCAID) under one or more contributor license agreements. See the
* NOTICE file distributed with this work for additional information regarding
* copyright ownership. The UCAID 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 net.shibboleth.utilities.java.support.security;
import javax.annotation.Nonnull;
import net.shibboleth.utilities.java.support.component.AbstractIdentifiableInitializableComponent;
import net.shibboleth.utilities.java.support.component.ComponentSupport;
import net.shibboleth.utilities.java.support.logic.Constraint;
import net.shibboleth.utilities.java.support.service.ReloadableService;
import net.shibboleth.utilities.java.support.service.ServiceableComponent;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* This class uses the {@link ReloadableService} concept to implement {@link AccessControlService}
* to hide the details of pinning and unpinning the underlying service.
*/
public class DelegatingAccessControlService extends AbstractIdentifiableInitializableComponent
implements AccessControlService {
/** Class logger. */
@Nonnull private final Logger log = LoggerFactory.getLogger(DelegatingAccessControlService.class);
/** The service which manages the reloading. */
private final ReloadableService service;
/**
* Constructor.
*
* @param acService the service which will manage the loading.
*/
public DelegatingAccessControlService(@Nonnull final ReloadableService acService) {
service = Constraint.isNotNull(acService, "AccessControlService cannot be null");
}
/** {@inheritDoc} */
@Override
public AccessControl getInstance(@Nonnull final String name) {
ComponentSupport.ifNotInitializedThrowUninitializedComponentException(this);
ServiceableComponent component = null;
try {
component = service.getServiceableComponent();
if (null == component) {
log.error("AccessControlService '{}': Error accessing underlying component: Invalid configuration.",
getId());
} else {
final AccessControlService svc = component.getComponent();
return svc.getInstance(name);
}
} finally {
if (null != component) {
component.unpinComponent();
}
}
return null;
}
}