| Home | Trees | Indices | Help |
|
|---|
|
|
object --+
|
Entry
Type which represents an entry in an ACL.
The type exists only if the OS has full support for POSIX.1e Can be created either by:
>>> e = posix1e.Entry(myACL) # this creates a new entry in the ACL >>> e = myACL.append() # another way for doing the same thing
or by:
>>> for entry in myACL: ... print entry
Note that the Entry keeps a reference to its ACL, so even if you delete the ACL, it won't be cleaned up and will continue to exist until its Entry(ies) will be deleted.
|
|||
|
|||
| a new object with type S, a subtype of T |
|
||
|
|||
|
|||
|
Inherited from |
|||
|
|||
|
parent The parent ACL of this entry |
|||
|
permset The permission set of this ACL entry |
|||
|
qualifier The qualifier of the current entry |
|||
|
tag_type The tag type of the current entry |
|||
|
Inherited from |
|||
|
|||
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
|
|
str(x)
|
Copy an ACL entry. This method sets all the parameters to those of another entry, even one of another's ACL Parameters:
|
|
|||
qualifierThe qualifier of the current entry If the tag type is ACL_USER, this should be a user id. If the tag type if ACL_GROUP, this should be a group id. Else, it doesn't matter. |
tag_typeThe tag type of the current entry This is one of:
|
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Tue Aug 17 22:49:37 2010 | http://epydoc.sourceforge.net |