home *** CD-ROM | disk | FTP | other *** search
/ Australian PC Authority 1999 May / may1999.iso / PATCHES / NT4SP4 / SP4I386.EXE / objectcontext.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-10-15  |  1.5 KB  |  31 lines

  1. package com.ms.mtx;
  2.  
  3. import com.ms.com.IUnknown;
  4. import com.ms.com.Variant;
  5.  
  6. public interface ObjectContext {
  7.    boolean IsInTransaction();
  8.  
  9.    SecurityProperty getSecurity();
  10.  
  11.    boolean IsSecurityEnabled();
  12.  
  13.    Variant getItem(String var1);
  14.  
  15.    void SetAbort();
  16.  
  17.    void EnableCommit();
  18.  
  19.    IUnknown get_NewEnum();
  20.  
  21.    void SetComplete();
  22.  
  23.    void DisableCommit();
  24.  
  25.    int getCount();
  26.  
  27.    boolean IsCallerInRole(String var1);
  28.  
  29.    Variant CreateInstance(String var1);
  30. }
  31.