Methods Summary |
---|
public java.lang.Object | clone()Clone this ACL entry.
ACL acl = (ACL)super.clone();
acl.rights = (Rights)this.rights.clone();
return acl;
|
public java.lang.String | getName()Get the identifier name for this ACL entry.
return name;
|
public com.sun.mail.imap.Rights | getRights()Get the rights associated with this ACL entry.
Returns the actual Rights object referenced by this ACL;
modifications to the Rights object will effect this ACL.
return rights;
|
public void | setRights(com.sun.mail.imap.Rights rights)Set the rights associated with this ACL entry.
this.rights = rights;
|