Uses of Interface
org.apache.wiki.api.core.AclEntry
-
Packages that use AclEntry Package Description org.apache.wiki.api.core JSPWiki's central API.org.apache.wiki.api.spi JSPWiki's SPI package.org.apache.wiki.auth.acl Access Control List implementation.org.apache.wiki.spi -
-
Uses of AclEntry in org.apache.wiki.api.core
Methods in org.apache.wiki.api.core that return AclEntry Modifier and Type Method Description AclEntry
Acl. getAclEntry(java.security.Principal principal)
Returns an AclEntry for a supplied Principal, ornull
if the Principal does not have a matching AclEntry.Methods in org.apache.wiki.api.core that return types with arguments of type AclEntry Modifier and Type Method Description java.util.Enumeration<AclEntry>
Acl. aclEntries()
Returns an enumeration of the entries in this ACL.Methods in org.apache.wiki.api.core with parameters of type AclEntry Modifier and Type Method Description boolean
Acl. addEntry(AclEntry entry)
Adds an ACL entry to this ACL.boolean
Acl. removeEntry(AclEntry entry)
Removes an ACL entry from this ACL. -
Uses of AclEntry in org.apache.wiki.api.spi
Methods in org.apache.wiki.api.spi that return AclEntry Modifier and Type Method Description AclEntry
AclsDSL. entry()
Creates a newAclEntry
instance.AclEntry
AclsSPI. entry()
Creates a newAclEntry
instance. -
Uses of AclEntry in org.apache.wiki.auth.acl
Subinterfaces of AclEntry in org.apache.wiki.auth.acl Modifier and Type Interface Description interface
AclEntry
Deprecated.useAclEntry
insteadClasses in org.apache.wiki.auth.acl that implement AclEntry Modifier and Type Class Description class
AclEntryImpl
Implementation of a JSPWiki AclEntry.Methods in org.apache.wiki.auth.acl that return AclEntry Modifier and Type Method Description AclEntry
AclImpl. getAclEntry(java.security.Principal principal)
Returns an AclEntry for a supplied Principal, ornull
if the Principal does not have a matching AclEntry.Methods in org.apache.wiki.auth.acl that return types with arguments of type AclEntry Modifier and Type Method Description java.util.Enumeration<AclEntry>
AclImpl. aclEntries()
Returns an enumeration of the entries in this ACL.Methods in org.apache.wiki.auth.acl with parameters of type AclEntry Modifier and Type Method Description boolean
AclImpl. addEntry(AclEntry entry)
Adds an ACL entry to this ACL.boolean
AclImpl. removeEntry(AclEntry entry)
Removes an ACL entry from this ACL. -
Uses of AclEntry in org.apache.wiki.spi
Methods in org.apache.wiki.spi that return AclEntry Modifier and Type Method Description AclEntry
AclsSPIDefaultImpl. entry()
Creates a newAclEntry
instance.
-