Package org.jboss.security.acl
Interface ACLRegistration
-
public interface ACLRegistration
Interface to register
ACL
s.- Author:
- Stefan Guilhen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
deRegisterACL(Resource resource)
Deregisters theACL
associated with the specified resource.void
registerACL(Resource resource)
Registers anACL
associated with the specifiedResource
.void
registerACL(Resource resource, Collection<ACLEntry> entries)
Registers anACL
associated with the specifiedResource
using the supplied entries.
-
-
-
Method Detail
-
registerACL
void registerACL(Resource resource)
Registers an
ACL
associated with the specifiedResource
. This usually means interacting with aACLPersistenceStrategy
to persist the createdACL
.- Parameters:
resource
- theResource
for which anACL
is to be registered.
-
registerACL
void registerACL(Resource resource, Collection<ACLEntry> entries)
Registers an
ACL
associated with the specifiedResource
using the supplied entries.- Parameters:
resource
- theResource
for which anACL
is to be registered.entries
- the entries of theACL
being registered.
-
deRegisterACL
void deRegisterACL(Resource resource)
Deregisters the
ACL
associated with the specified resource.- Parameters:
resource
- theResource
for which anACL
is to be deregistered.
-
-