Navigation Menu

Skip to content

Commit

Permalink
Merge pull request #4 from fcrepo4-labs/jareds-acl-branch
Browse files Browse the repository at this point in the history
WebAC ACL Interface
  • Loading branch information
Andrew Woods committed Aug 28, 2015
2 parents 6e8d3f2 + 187f993 commit 7b4f093
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Expand Up @@ -13,3 +13,8 @@ hs_err_pid*
/build/
/target/
*~

# Eclipse setting files
.settings/
.classpath
.project
64 changes: 64 additions & 0 deletions src/main/java/org/fcrepo/auth/webac/WebACAuthorization.java
@@ -0,0 +1,64 @@
/**
* Copyright 2015 DuraSpace, Inc.
*
* Licensed 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.fcrepo.auth.webac;

import java.net.URI;
import java.util.Set;

/**
* Interface for WebAC Authorization objects.
*
* @author whikloj
* @since 2015-08-25
*/
public interface WebACAuthorization {

/**
* Get the set of acl:agents, empty set if none.
*
* @return set of acl:agents
*/
Set<String> getAgents();

/**
* Get the set of acl:agentClasses, empty set if none.
*
* @return set of acl:agentClasses
*/
Set<String> getAgentClasses();

/**
* Get the set of acl:modes, empty set if none.
*
* @return set of acl:modes
*/
Set<URI> getModes();

/**
* Get the set of strings directly linked from this ACL, empty set if none.
*
* @return set of String
*/
Set<String> getAccessToURIs();

/**
* Get the set of strings describing the rdf:types for this ACL, empty set if none.
*
* @return set of Strings
*/
Set<String> getAccessToClassURIs();

}

0 comments on commit 7b4f093

Please sign in to comment.