home *** CD-ROM | disk | FTP | other *** search
- package lotus.domino;
-
- public interface DbDirectory extends Base {
- int REPLICA_CANDIDATE = 1245;
- int TEMPLATE_CANDIDATE = 1246;
- int DATABASE = 1247;
- int TEMPLATE = 1248;
-
- Database createDatabase(String var1) throws NotesException;
-
- Database createDatabase(String var1, boolean var2) throws NotesException;
-
- Database getFirstDatabase(int var1) throws NotesException;
-
- Database getNextDatabase() throws NotesException;
-
- String getName() throws NotesException;
-
- Session getParent() throws NotesException;
-
- Database openDatabase(String var1) throws NotesException;
-
- Database openDatabase(String var1, boolean var2) throws NotesException;
-
- Database openDatabaseIfModified(String var1, DateTime var2) throws NotesException;
-
- Database openMailDatabase() throws NotesException;
-
- Database openDatabaseByReplicaID(String var1) throws NotesException;
- }
-