Spec-Zone .ru
спецификации, руководства, описания, API
|
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.nio.file.attribute.AclEntry
public final class AclEntry extends Object
An entry in an access control list (ACL).
The ACL entry represented by this class is based on the ACL model
specified in
The type
component determines if the entry
grants or denies access.
The principal
component, sometimes called the
"who" component, is a UserPrincipal
corresponding to the identity
that the entry grants or denies access
The permissions
component is a set of
permissions
The flags
component is a set of flags
to 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.
Modifier and Type | Class and Description |
---|---|
static class |
AclEntry.Builder
A builder of AclEntry objects. |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object ob)
Compares the specified object with this ACL entry for equality. |
Set<AclEntryFlag> |
flags()
Returns a copy of the flags component. |
int |
hashCode()
Returns the hash-code value for this ACL entry. |
static AclEntry.Builder |
newBuilder()
Constructs a new builder. |
static AclEntry.Builder |
newBuilder(AclEntry entry)
Constructs a new builder with the components of an existing ACL entry. |
Set<AclEntryPermission> |
permissions()
Returns a copy of the permissions component. |
UserPrincipal |
principal()
Returns the principal component. |
String |
toString()
Returns the string representation of this ACL entry. |
AclEntryType |
type()
Returns the ACL entry type. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Method Detail |
---|
public static AclEntry.Builder newBuilder()
null
. The initial value of the permissions and
flags components is the empty set.
public static AclEntry.Builder newBuilder(AclEntry entry)
entry
- an ACL entrypublic AclEntryType type()
public UserPrincipal principal()
public Set<AclEntryPermission> permissions()
The returned set is a modifiable copy of the permissions.
public Set<AclEntryFlag> flags()
The returned set is a modifiable copy of the flags.
public boolean equals(Object ob)
If the given object is not an AclEntry
then this method
immediately returns false
.
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.equals
method.
equals
in class Object
ob
- the object to which this object is to be comparedtrue
if, and only if, the given object is an AclEntry that
is identical to this AclEntryObject.hashCode()
,
HashMap
public int hashCode()
This method satisfies the general contract of the Object.hashCode()
method.
hashCode
in class Object
Object.equals(java.lang.Object)
,
System.identityHashCode(java.lang.Object)
public String toString()
toString
in class Object
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright © 1993, 2010, Oracle Corporation. All rights reserved.