1. /*
  2. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  3. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  4. */
  5. package javax.ejb;
  6. /**
  7. * The EnterpriseBean interface must be implemented by every enterprise Bean
  8. * class. It is a common superinterface for the
  9. * SessionBean, EntityBean and MessageDrivenBean interfaces.
  10. */
  11. public interface EnterpriseBean extends java.io.Serializable {
  12. }