home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / Notes.jar / lotus / domino / ACL.class (.txt) next >
Encoding:
Java Class File  |  1998-11-15  |  1.4 KB  |  47 lines

  1. package lotus.domino;
  2.  
  3. import java.util.Vector;
  4.  
  5. public interface ACL extends Base {
  6.    int LEVEL_NOACCESS = 0;
  7.    int LEVEL_DEPOSITOR = 1;
  8.    int LEVEL_READER = 2;
  9.    int LEVEL_AUTHOR = 3;
  10.    int LEVEL_EDITOR = 4;
  11.    int LEVEL_DESIGNER = 5;
  12.    int LEVEL_MANAGER = 6;
  13.    int ACL_MAX_ROLES = 80;
  14.  
  15.    ACLEntry getFirstEntry() throws NotesException;
  16.  
  17.    ACLEntry getNextEntry(ACLEntry var1) throws NotesException;
  18.  
  19.    ACLEntry getNextEntry() throws NotesException;
  20.  
  21.    ACLEntry getEntry(String var1) throws NotesException;
  22.  
  23.    int getInternetLevel() throws NotesException;
  24.  
  25.    void setInternetLevel(int var1) throws NotesException;
  26.  
  27.    void save() throws NotesException;
  28.  
  29.    void renameRole(String var1, String var2) throws NotesException;
  30.  
  31.    void addRole(String var1) throws NotesException;
  32.  
  33.    void deleteRole(String var1) throws NotesException;
  34.  
  35.    ACLEntry createACLEntry(String var1, int var2) throws NotesException;
  36.  
  37.    Vector getRoles() throws NotesException;
  38.  
  39.    Database getParent() throws NotesException;
  40.  
  41.    boolean isUniformAccess() throws NotesException;
  42.  
  43.    void setUniformAccess(boolean var1) throws NotesException;
  44.  
  45.    void removeACLEntry(String var1) throws NotesException;
  46. }
  47.