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

  1. package lotus.domino;
  2.  
  3. import java.util.Vector;
  4.  
  5. public interface Log extends Base {
  6.    int EV_UNKNOWN = 0;
  7.    int EV_COMM = 1;
  8.    int EV_SECURITY = 2;
  9.    int EV_MAIL = 3;
  10.    int EV_REPLICA = 4;
  11.    int EV_RESOURCE = 5;
  12.    int EV_MISC = 6;
  13.    int EV_SERVER = 7;
  14.    int EV_ALARM = 8;
  15.    int EV_UPDATE = 9;
  16.    int SEV_UNKNOWN = 0;
  17.    int SEV_FATAL = 1;
  18.    int SEV_FAILURE = 2;
  19.    int SEV_WARNING1 = 3;
  20.    int SEV_WARNING2 = 4;
  21.    int SEV_NORMAL = 5;
  22.  
  23.    void close() throws NotesException;
  24.  
  25.    String getProgramName() throws NotesException;
  26.  
  27.    void setProgramName(String var1) throws NotesException;
  28.  
  29.    int getNumActions() throws NotesException;
  30.  
  31.    int getNumErrors() throws NotesException;
  32.  
  33.    Session getParent() throws NotesException;
  34.  
  35.    boolean isLogActions() throws NotesException;
  36.  
  37.    void setLogActions(boolean var1) throws NotesException;
  38.  
  39.    boolean isLogErrors() throws NotesException;
  40.  
  41.    void setLogErrors(boolean var1) throws NotesException;
  42.  
  43.    boolean isOverwriteFile() throws NotesException;
  44.  
  45.    void setOverwriteFile(boolean var1) throws NotesException;
  46.  
  47.    void logAction(String var1) throws NotesException;
  48.  
  49.    void logError(int var1, String var2) throws NotesException;
  50.  
  51.    void logEvent(String var1, String var2, int var3, int var4) throws NotesException;
  52.  
  53.    void openAgentLog() throws NotesException;
  54.  
  55.    void openFileLog(String var1) throws NotesException;
  56.  
  57.    void openMailLog(Vector var1, String var2) throws NotesException;
  58.  
  59.    void openNotesLog(String var1, String var2) throws NotesException;
  60. }
  61.