blob: ae4eda6967e3a8db6ecb63077e2e3998ab8d4fe6 [file] [log] [blame]
/*
* 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.jcr.base.internal.mount;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import javax.jcr.AccessDeniedException;
import javax.jcr.NamespaceException;
import javax.jcr.RepositoryException;
import javax.jcr.security.AccessControlException;
import javax.jcr.security.Privilege;
import org.apache.jackrabbit.api.security.authorization.PrivilegeManager;
public class ProxyPrivilegeManager extends ProxyWrapper<PrivilegeManager> implements PrivilegeManager {
private final PrivilegeManager mount;
public ProxyPrivilegeManager(ProxySession<?> mountSession, PrivilegeManager delegate, PrivilegeManager mount) {
super(mountSession, delegate);
this.mount = mount;
}
public Privilege[] getRegisteredPrivileges() throws RepositoryException {
List<Privilege> result = new ArrayList<>();
result.addAll(Arrays.asList(delegate.getRegisteredPrivileges()));
result.addAll(Arrays.asList(mount.getRegisteredPrivileges()));
return result.toArray(new Privilege[0]);
}
public Privilege getPrivilege(String privilegeName) throws AccessControlException, RepositoryException {
try {
return mount.getPrivilege(privilegeName);
} catch (AccessControlException ex) {
return delegate.getPrivilege(privilegeName);
}
}
public Privilege registerPrivilege(String privilegeName, boolean isAbstract, String[] declaredAggregateNames) throws AccessDeniedException, NamespaceException, RepositoryException {
mount.registerPrivilege(privilegeName, isAbstract, declaredAggregateNames);
return delegate.registerPrivilege(privilegeName, isAbstract, declaredAggregateNames);
}
}