EnterpriseBean.java |
/* * JBoss, the OpenSource EJB server * * Distributable under LGPL license. * See terms of license at gnu.org. */ package javax.ejb; /** * The EnterpriseBean interface must be implemented by every enterprise Bean class. * It is a common superinterface for the SessionBean, EntityBean and MessageDrivenBean interfaces. */ public interface EnterpriseBean extends java.io.Serializable { }
EnterpriseBean.java |