public interface ACLRegistration
Interface to register ACL
s.
Modifier and Type | Method and Description |
---|---|
void |
deRegisterACL(Resource resource)
Deregisters the
ACL associated with the specified resource. |
void |
registerACL(Resource resource)
Registers an
ACL associated with the specified Resource . |
void |
registerACL(Resource resource,
Collection<ACLEntry> entries)
Registers an
ACL associated with the specified Resource using the supplied entries. |
void registerACL(Resource resource)
Registers an ACL
associated with the specified Resource
. This usually means interacting
with a ACLPersistenceStrategy
to persist the created ACL
.
resource
- the Resource
for which an ACL
is to be registered.void registerACL(Resource resource, Collection<ACLEntry> entries)
Registers an ACL
associated with the specified Resource
using the supplied entries.
resource
- the Resource
for which an ACL
is to be registered.entries
- the entries of the ACL
being registered.void deRegisterACL(Resource resource)
Deregisters the ACL
associated with the specified resource.
resource
- the Resource
for which an ACL
is to be deregistered.Copyright © 2019 JBoss by Red Hat. All rights reserved.