Class ImmutablePrivilegeDefinition
- java.lang.Object
-
- org.apache.jackrabbit.oak.spi.security.privilege.ImmutablePrivilegeDefinition
-
- All Implemented Interfaces:
PrivilegeDefinition
public final class ImmutablePrivilegeDefinition extends Object implements PrivilegeDefinition
Default implementation of thePrivilegeDefinition
interface.
-
-
Constructor Summary
Constructors Constructor Description ImmutablePrivilegeDefinition(@NotNull String name, boolean isAbstract, @Nullable Iterable<String> declaredAggregateNames)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
@NotNull Set<String>
getDeclaredAggregateNames()
Returns the internal names of the declared aggregated privileges or an empty array if the privilege defined by this definition isn't an aggregate.@NotNull String
getName()
The internal name of this privilege.int
hashCode()
boolean
isAbstract()
Returnstrue
if the privilege described by this definition is abstract.String
toString()
-
-
-
Method Detail
-
getName
@NotNull public @NotNull String getName()
Description copied from interface:PrivilegeDefinition
The internal name of this privilege.- Specified by:
getName
in interfacePrivilegeDefinition
- Returns:
- the internal name.
-
isAbstract
public boolean isAbstract()
Description copied from interface:PrivilegeDefinition
Returnstrue
if the privilege described by this definition is abstract.- Specified by:
isAbstract
in interfacePrivilegeDefinition
- Returns:
true
if the resulting privilege is abstract;false
otherwise.
-
getDeclaredAggregateNames
@NotNull public @NotNull Set<String> getDeclaredAggregateNames()
Description copied from interface:PrivilegeDefinition
Returns the internal names of the declared aggregated privileges or an empty array if the privilege defined by this definition isn't an aggregate.- Specified by:
getDeclaredAggregateNames
in interfacePrivilegeDefinition
- Returns:
- The internal names of the aggregated privileges or an empty array.
-
-