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

  1. package lotus.domino;
  2.  
  3. public interface AgentContext extends Base {
  4.    void updateProcessedDoc(Document var1) throws NotesException;
  5.  
  6.    DocumentCollection unprocessedFTSearch(String var1, int var2) throws NotesException;
  7.  
  8.    DocumentCollection unprocessedFTSearch(String var1, int var2, int var3, int var4) throws NotesException;
  9.  
  10.    DocumentCollection unprocessedSearch(String var1, DateTime var2, int var3) throws NotesException;
  11.  
  12.    String getEffectiveUserName() throws NotesException;
  13.  
  14.    Agent getCurrentAgent() throws NotesException;
  15.  
  16.    Database getCurrentDatabase() throws NotesException;
  17.  
  18.    Document getDocumentContext() throws NotesException;
  19.  
  20.    int getLastExitStatus() throws NotesException;
  21.  
  22.    DateTime getLastRun() throws NotesException;
  23.  
  24.    Document getSavedData() throws NotesException;
  25.  
  26.    DocumentCollection getUnprocessedDocuments() throws NotesException;
  27. }
  28.