Package org.jboss.security.acl
Interface ACLRegistration
-
public interface ACLRegistrationInterface to register
ACLs.- Author:
- Stefan Guilhen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddeRegisterACL(Resource resource)Deregisters theACLassociated with the specified resource.voidregisterACL(Resource resource)Registers anACLassociated with the specifiedResource.voidregisterACL(Resource resource, Collection<ACLEntry> entries)Registers anACLassociated with the specifiedResourceusing the supplied entries.
-
-
-
Method Detail
-
registerACL
void registerACL(Resource resource)
Registers an
ACLassociated with the specifiedResource. This usually means interacting with aACLPersistenceStrategyto persist the createdACL.- Parameters:
resource- theResourcefor which anACLis to be registered.
-
registerACL
void registerACL(Resource resource, Collection<ACLEntry> entries)
Registers an
ACLassociated with the specifiedResourceusing the supplied entries.- Parameters:
resource- theResourcefor which anACLis to be registered.entries- the entries of theACLbeing registered.
-
deRegisterACL
void deRegisterACL(Resource resource)
Deregisters the
ACLassociated with the specified resource.- Parameters:
resource- theResourcefor which anACLis to be deregistered.
-
-