Class AclEntry
The ACL entry represented by this class is based on the ACL model specified in RFC 3530: Network File System (NFS) version 4 Protocol. Each entry has four components as follows:
The
typecomponent determines if the entry grants or denies access.The
principalcomponent, sometimes called the "who" component, is aUserPrincipalcorresponding to the identity that the entry grants or denies accessThe
permissionscomponent is a set ofpermissionsThe
flagscomponent is a set offlagsto indicate how entries are inherited and propagated
ACL entries are created using an associated AclEntry.Builder object by
invoking its build method.
ACL entries are immutable and are safe for use by multiple concurrent threads.
- Since:
- 1.7
- External Specifications
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionbooleanCompares the specified object with this ACL entry for equality.flags()Returns a copy of the flags component.inthashCode()Returns the hash-code value for this ACL entry.static AclEntry.BuilderConstructs a new builder.static AclEntry.BuildernewBuilder(AclEntry entry) Constructs a new builder with the components of an existing ACL entry.Returns a copy of the permissions component.Returns the principal component.toString()Returns the string representation of this ACL entry.type()Returns the ACL entry type.Methods declared in class Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Method Details
-
newBuilder
Constructs a new builder. The initial value of the type and who components isnull. The initial value of the permissions and flags components is the empty set.- Returns:
- a new builder
-
newBuilder
Constructs a new builder with the components of an existing ACL entry.- Parameters:
entry- an ACL entry- Returns:
- a new builder
-
type
-
principal
-
permissions
Returns a copy of the permissions component.The returned set is a modifiable copy of the permissions.
- Returns:
- the permissions component
-
flags
Returns a copy of the flags component.The returned set is a modifiable copy of the flags.
- Returns:
- the flags component
-
equals
Compares the specified object with this ACL entry for equality.If the given object is not an
AclEntrythen this method immediately returnsfalse.For two ACL entries to be considered equals requires that they are both the same type, their who components are equal, their permissions components are equal, and their flags components are equal.
This method satisfies the general contract of the
Object.equalsmethod. -
hashCode
public int hashCode()Returns the hash-code value for this ACL entry.This method satisfies the general contract of the
Object.hashCode()method. -
toString
-