home *** CD-ROM | disk | FTP | other *** search
- package lotus.domino;
-
- public interface Replication extends Base {
- int CNOTES_REPLCONST_PRIORITYLOW = 1547;
- int CNOTES_REPLCONST_PRIORITYMED = 1548;
- int CNOTES_REPLCONST_PRIORITYHIGH = 1549;
- int CNOTES_REPLCONST_PRIORITYNOTSET = 1565;
- int LEVEL_NOACCESS = 0;
-
- int save() throws NotesException;
-
- int reset() throws NotesException;
-
- int clearHistory() throws NotesException;
-
- long getCutoffInterval() throws NotesException;
-
- DateTime getCutoffDate() throws NotesException;
-
- boolean getDisabled() throws NotesException;
-
- boolean getIgnoreDeletes() throws NotesException;
-
- boolean getHideDesign() throws NotesException;
-
- boolean getDoNotCatalog() throws NotesException;
-
- boolean getCutoffDelete() throws NotesException;
-
- boolean getNeverReplicate() throws NotesException;
-
- boolean getAbstract() throws NotesException;
-
- boolean getDoNotBrowse() throws NotesException;
-
- boolean getNoChronos() throws NotesException;
-
- boolean getIgnoreDestDeletes() throws NotesException;
-
- boolean getMultiDbIndex() throws NotesException;
-
- int getPriority() throws NotesException;
-
- void setCutoffInterval(long var1) throws NotesException;
-
- void setDisabled(boolean var1) throws NotesException;
-
- void setIgnoreDeletes(boolean var1) throws NotesException;
-
- void setHideDesign(boolean var1) throws NotesException;
-
- void setDoNotCatalog(boolean var1) throws NotesException;
-
- void setCutoffDelete(boolean var1) throws NotesException;
-
- void setNeverReplicate(boolean var1) throws NotesException;
-
- void setAbstract(boolean var1) throws NotesException;
-
- void setDoNotBrowse(boolean var1) throws NotesException;
-
- void setNoChronos(boolean var1) throws NotesException;
-
- void setIgnoreDestDeletes(boolean var1) throws NotesException;
-
- void setMultiDbIndex(boolean var1) throws NotesException;
-
- void setPriority(int var1) throws NotesException;
- }
-