home *** CD-ROM | disk | FTP | other *** search
- package lotus.domino;
-
- import java.util.Vector;
-
- public interface ACLEntry extends Base {
- int TYPE_UNSPECIFIED = 0;
- int TYPE_PERSON = 1;
- int TYPE_SERVER = 2;
- int TYPE_MIXED_GROUP = 3;
- int TYPE_PERSON_GROUP = 4;
- int TYPE_SERVER_GROUP = 5;
-
- void enableRole(String var1) throws NotesException;
-
- void disableRole(String var1) throws NotesException;
-
- boolean isRoleEnabled(String var1) throws NotesException;
-
- void remove() throws NotesException;
-
- Vector getRoles() throws NotesException;
-
- String getName() throws NotesException;
-
- void setName(String var1) throws NotesException;
-
- Name getNameObject() throws NotesException;
-
- void setName(Name var1) throws NotesException;
-
- int getLevel() throws NotesException;
-
- void setLevel(int var1) throws NotesException;
-
- int getUserType() throws NotesException;
-
- void setUserType(int var1) throws NotesException;
-
- boolean isCanCreatePersonalAgent() throws NotesException;
-
- void setCanCreatePersonalAgent(boolean var1) throws NotesException;
-
- boolean isCanCreatePersonalFolder() throws NotesException;
-
- void setCanCreatePersonalFolder(boolean var1) throws NotesException;
-
- boolean isCanCreateDocuments() throws NotesException;
-
- void setCanCreateDocuments(boolean var1) throws NotesException;
-
- boolean isCanDeleteDocuments() throws NotesException;
-
- void setCanDeleteDocuments(boolean var1) throws NotesException;
-
- ACL getParent() throws NotesException;
-
- boolean isPublicReader() throws NotesException;
-
- void setPublicReader(boolean var1) throws NotesException;
-
- boolean isPublicWriter() throws NotesException;
-
- void setPublicWriter(boolean var1) throws NotesException;
-
- boolean isCanCreateLSOrJava() throws NotesException;
-
- void setCanCreateLSOrJava(boolean var1) throws NotesException;
-
- boolean isServer() throws NotesException;
-
- void setServer(boolean var1) throws NotesException;
-
- boolean isPerson() throws NotesException;
-
- void setPerson(boolean var1) throws NotesException;
-
- boolean isGroup() throws NotesException;
-
- void setGroup(boolean var1) throws NotesException;
-
- boolean isCanCreateSharedFolder() throws NotesException;
-
- void setCanCreateSharedFolder(boolean var1) throws NotesException;
-
- boolean isAdminReaderAuthor() throws NotesException;
-
- void setAdminReaderAuthor(boolean var1) throws NotesException;
-
- boolean isAdminServer() throws NotesException;
-
- void setAdminServer(boolean var1) throws NotesException;
- }
-