1 /* 2 * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com 3 * The software in this package is published under the terms of the CPAL v1.0 4 * license, a copy of which has been included with this distribution in the 5 * LICENSE.txt file. 6 */ 7 package org.mule.api.lifecycle; 8 9 /** 10 * <code>EventListener</code> is a marker interface that is implemented by 11 * objects wishing to receive Mule events in managed environments, such as an EJB 12 * container. There are not methods on this interface as typically Mule will work out 13 * the method to invoke on the listener. Developers can implement 14 * <code>org.mule.api.lifecycle.Callable</code> to implement a specific Mule 15 * listener interface. 16 * 17 * @see Callable 18 */ 19 public interface EventListener 20 { 21 // no methods 22 }