Package org.fcrepo.kernel.api.auth
Interface WebACAuthorization
-
- All Known Implementing Classes:
WebACAuthorizationImpl
public interface WebACAuthorization
- Since:
- 2015-08-25
- Author:
- whikloj, acoburn
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<String>
getAccessToClassURIs()
Get the set of strings describing the rdf:types for this ACL, empty set if none.Set<String>
getAccessToURIs()
Get the set of strings directly linked from this ACL, empty set if none.Set<String>
getAgentClasses()
Get the set of acl:agentClasses, empty set if none.Set<String>
getAgentGroups()
Get the set of strings describing the agent groups for this ACL, empty set if none.Set<String>
getAgents()
Get the set of acl:agents, empty set if none.Set<String>
getDefaults()
Get the set of strings describing the defaults for this ACL, empty set if none.Set<URI>
getModes()
Get the set of acl:modes, empty set if none.
-
-
-
Method Detail
-
getAgents
Set<String> getAgents()
Get the set of acl:agents, empty set if none.- Returns:
- set of acl:agents
-
getAgentClasses
Set<String> getAgentClasses()
Get the set of acl:agentClasses, empty set if none.- Returns:
- set of acl:agentClasses
-
getAccessToURIs
Set<String> getAccessToURIs()
Get the set of strings directly linked from this ACL, empty set if none.- Returns:
- set of String
-
getAccessToClassURIs
Set<String> getAccessToClassURIs()
Get the set of strings describing the rdf:types for this ACL, empty set if none.- Returns:
- set of Strings
-
getAgentGroups
Set<String> getAgentGroups()
Get the set of strings describing the agent groups for this ACL, empty set if none.- Returns:
- set of Strings
-
getDefaults
Set<String> getDefaults()
Get the set of strings describing the defaults for this ACL, empty set if none.- Returns:
- set of Strings
-
-