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 MessageDrivenContext interface provides access to the runtime
  8. * message-driven context that the container provides for a message-driven
  9. * enterprise Bean instance. The container passes the MessageDrivenContext
  10. * interface to an instance after the instance has been created. The
  11. * message-driven context remains associated with the instance for the
  12. * lifetime of the instance.
  13. */
  14. public interface MessageDrivenContext extends EJBContext
  15. {
  16. }