home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / Share / Java / JDesignerPro / Jdp3_0.exe / data1.cab / Program_Files / javax / ejb / EJBContext.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-04-09  |  563 b   |  22 lines

  1. package javax.ejb;
  2.  
  3. import java.security.Identity;
  4. import java.util.Properties;
  5. import javax.jts.UserTransaction;
  6.  
  7. public interface EJBContext {
  8.    EJBHome getEJBHome();
  9.  
  10.    Properties getEnvironment();
  11.  
  12.    Identity getCallerIdentity();
  13.  
  14.    boolean isCallerInRole(Identity var1);
  15.  
  16.    UserTransaction getUserTransaction() throws IllegalStateException;
  17.  
  18.    void setRollbackOnly();
  19.  
  20.    boolean getRollbackOnly();
  21. }
  22.