JAFS API v2

Uses of Class
org.openafs.jafs.ACL.Entry

Uses of ACL.Entry in org.openafs.jafs
 

Methods in org.openafs.jafs that return ACL.Entry
 ACL.Entry[] ACL.getPositiveEntries()
          Returns all positive ACL entries for this ACL instance.
 ACL.Entry ACL.getPositiveEntry(String name)
          Returns the positive ACL entry associated with the specified user/group name.
 ACL.Entry[] ACL.getPositiveExpungeEntries()
          Returns all positive ACL entries to be expunged; used in Delta ACLs.
 ACL.Entry[] ACL.getNegativeEntries()
          Returns all negative ACL entries for this ACL instance.
 ACL.Entry ACL.getNegativeEntry(String name)
          Returns the negative ACL entry associated with the specified user/group name.
 ACL.Entry[] ACL.getNegativeExpungeEntries()
          Returns all negative ACL entries to be expunged; used in Delta ACLs.
 

Methods in org.openafs.jafs with parameters of type ACL.Entry
 boolean ACL.containsPositiveEntry(ACL.Entry entry)
          Returns true if this ACL contains the specified ACL entry.
 void ACL.addPositiveEntry(ACL.Entry entry)
          Adds a single positive ACL entry to this ACL instance.
 void ACL.addPositiveEntries(ACL.Entry[] entries)
          Adds the provided list of positive ACL entries to this ACL instance.
 void ACL.setPositiveEntries(ACL.Entry[] entries)
          Sets the complete array of positive ACL entries to the provided ACL entry list (entries) for this ACL instance.
 void ACL.addPositiveExpungeEntry(ACL.Entry entry)
          Add a positive ACL entry to the list of positive ACL entries to be expunged; used in Delta ACLs.
 void ACL.removePositiveEntry(ACL.Entry entry)
          Removes a single positive ACL entry from this ACL instance.
 boolean ACL.containsNegative(ACL.Entry entry)
          Returns true if this ACL contains the specified ACL entry.
 void ACL.addNegativeEntry(ACL.Entry entry)
          Adds a single negative ACL entry to this ACL instance.
 void ACL.addNegativeEntries(ACL.Entry[] entries)
          Adds the provided list of negative ACL entries to this ACL instance.
 void ACL.addNegativeExpungeEntry(ACL.Entry entry)
          Add a negative ACL entry to the list of negative ACL entries to be expunged; used in Delta ACLs.
 void ACL.setNegativeEntries(ACL.Entry[] entries)
          Sets the complete array of negative ACL entries to the provided ACL entry list (entries) for this ACL instance.
 void ACL.removeNegativeEntry(ACL.Entry entry)
          Removes a single negative ACL entry from this ACL instance.
 boolean ACL.Entry.equals(ACL.Entry entry)
          Tests whether two ACL.Entry objects are equal, based on associated username and permission bits.
 


JAFS API v2