View Javadoc
1   /*
2    * Copyright (C) 2007-2012 Argeo GmbH
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *         http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.argeo.security.jackrabbit;
17  
18  import javax.jcr.PathNotFoundException;
19  import javax.jcr.RepositoryException;
20  import javax.jcr.security.Privilege;
21  
22  import org.apache.jackrabbit.core.id.ItemId;
23  import org.apache.jackrabbit.core.security.DefaultAccessManager;
24  import org.apache.jackrabbit.spi.Path;
25  
26  /**
27   * Intermediary class in order to have a consistent naming in config files. Does
28   * nothing for the time being, but may in the future.
29   */
30  public class ArgeoAccessManager extends DefaultAccessManager {
31  
32  	@Override
33  	public boolean canRead(Path itemPath, ItemId itemId)
34  			throws RepositoryException {
35  		return super.canRead(itemPath, itemId);
36  	}
37  
38  	@Override
39  	public Privilege[] getPrivileges(String absPath)
40  			throws PathNotFoundException, RepositoryException {
41  		return super.getPrivileges(absPath);
42  	}
43  
44  	@Override
45  	public boolean hasPrivileges(String absPath, Privilege[] privileges)
46  			throws PathNotFoundException, RepositoryException {
47  		return super.hasPrivileges(absPath, privileges);
48  	}
49  
50  }