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

  1. package lotus.domino;
  2.  
  3. public interface Replication extends Base {
  4.    int CNOTES_REPLCONST_PRIORITYLOW = 1547;
  5.    int CNOTES_REPLCONST_PRIORITYMED = 1548;
  6.    int CNOTES_REPLCONST_PRIORITYHIGH = 1549;
  7.    int CNOTES_REPLCONST_PRIORITYNOTSET = 1565;
  8.    int LEVEL_NOACCESS = 0;
  9.  
  10.    int save() throws NotesException;
  11.  
  12.    int reset() throws NotesException;
  13.  
  14.    int clearHistory() throws NotesException;
  15.  
  16.    long getCutoffInterval() throws NotesException;
  17.  
  18.    DateTime getCutoffDate() throws NotesException;
  19.  
  20.    boolean getDisabled() throws NotesException;
  21.  
  22.    boolean getIgnoreDeletes() throws NotesException;
  23.  
  24.    boolean getHideDesign() throws NotesException;
  25.  
  26.    boolean getDoNotCatalog() throws NotesException;
  27.  
  28.    boolean getCutoffDelete() throws NotesException;
  29.  
  30.    boolean getNeverReplicate() throws NotesException;
  31.  
  32.    boolean getAbstract() throws NotesException;
  33.  
  34.    boolean getDoNotBrowse() throws NotesException;
  35.  
  36.    boolean getNoChronos() throws NotesException;
  37.  
  38.    boolean getIgnoreDestDeletes() throws NotesException;
  39.  
  40.    boolean getMultiDbIndex() throws NotesException;
  41.  
  42.    int getPriority() throws NotesException;
  43.  
  44.    void setCutoffInterval(long var1) throws NotesException;
  45.  
  46.    void setDisabled(boolean var1) throws NotesException;
  47.  
  48.    void setIgnoreDeletes(boolean var1) throws NotesException;
  49.  
  50.    void setHideDesign(boolean var1) throws NotesException;
  51.  
  52.    void setDoNotCatalog(boolean var1) throws NotesException;
  53.  
  54.    void setCutoffDelete(boolean var1) throws NotesException;
  55.  
  56.    void setNeverReplicate(boolean var1) throws NotesException;
  57.  
  58.    void setAbstract(boolean var1) throws NotesException;
  59.  
  60.    void setDoNotBrowse(boolean var1) throws NotesException;
  61.  
  62.    void setNoChronos(boolean var1) throws NotesException;
  63.  
  64.    void setIgnoreDestDeletes(boolean var1) throws NotesException;
  65.  
  66.    void setMultiDbIndex(boolean var1) throws NotesException;
  67.  
  68.    void setPriority(int var1) throws NotesException;
  69. }
  70.