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

  1. package lotus.domino;
  2.  
  3. public interface DbDirectory extends Base {
  4.    int REPLICA_CANDIDATE = 1245;
  5.    int TEMPLATE_CANDIDATE = 1246;
  6.    int DATABASE = 1247;
  7.    int TEMPLATE = 1248;
  8.  
  9.    Database createDatabase(String var1) throws NotesException;
  10.  
  11.    Database createDatabase(String var1, boolean var2) throws NotesException;
  12.  
  13.    Database getFirstDatabase(int var1) throws NotesException;
  14.  
  15.    Database getNextDatabase() throws NotesException;
  16.  
  17.    String getName() throws NotesException;
  18.  
  19.    Session getParent() throws NotesException;
  20.  
  21.    Database openDatabase(String var1) throws NotesException;
  22.  
  23.    Database openDatabase(String var1, boolean var2) throws NotesException;
  24.  
  25.    Database openDatabaseIfModified(String var1, DateTime var2) throws NotesException;
  26.  
  27.    Database openMailDatabase() throws NotesException;
  28.  
  29.    Database openDatabaseByReplicaID(String var1) throws NotesException;
  30. }
  31.