blob: 751beb34ddcb03ab6e9eb1af4ebf17149b79be0c [file] [log] [blame]
package jakarta.ejb;
public interface SessionContext extends EJBContext {
EJBLocalObject getEJBLocalObject() throws IllegalStateException;
EJBObject getEJBObject() throws IllegalStateException;
<T> T getBusinessObject(Class<T> businessInterface) throws IllegalStateException;
Class getInvokedBusinessInterface() throws IllegalStateException;
boolean wasCancelCalled() throws IllegalStateException;
}