1 23 package com.sun.ejb; 24 25 import javax.ejb.EnterpriseBean ; 26 import javax.transaction.Transaction ; 27 import java.util.List ; 28 29 34 35 public interface ComponentContext { 36 37 40 Object getEJB(); 41 42 45 Container getContainer(); 46 47 50 Transaction getTransaction(); 51 52 58 void checkTimerServiceMethodAccess() throws IllegalStateException ; 59 60 63 List getResourceList(); 64 65 } 66 67 | Popular Tags |