/* * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */ package org.mule.runtime.core.api.lifecycle; /** * <code>EventListener</code> is a marker interface that is implemented by objects wishing to receive Mule events in managed * environments, such as an EJB container. There are not methods on this interface as typically Mule will work out the method to * invoke on the listener. Developers can implement <code>org.mule.runtime.core.api.lifecycle.Callable</code> to implement a * specific Mule listener interface. * * @see Callable */ public interface EventListener { // no methods }