Renamed AbstractMessageProducingEndpoint to MessageProducerSupport.

This commit is contained in:
Mark Fisher
2008-11-03 11:52:30 +00:00
parent aa87fa7649
commit 90dcb7e88b
3 changed files with 9 additions and 5 deletions

View File

@@ -21,7 +21,7 @@ import java.util.concurrent.CopyOnWriteArrayList;
import org.springframework.context.ApplicationEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.integration.endpoint.AbstractMessageProducingEndpoint;
import org.springframework.integration.endpoint.MessageProducerSupport;
import org.springframework.integration.message.MessageBuilder;
import org.springframework.util.Assert;
import org.springframework.util.CollectionUtils;
@@ -32,7 +32,7 @@ import org.springframework.util.CollectionUtils;
*
* @author Mark Fisher
*/
public class ApplicationEventInboundChannelAdapter extends AbstractMessageProducingEndpoint implements ApplicationListener {
public class ApplicationEventInboundChannelAdapter extends MessageProducerSupport implements ApplicationListener {
private final List<Class<? extends ApplicationEvent>> eventTypes = new CopyOnWriteArrayList<Class<? extends ApplicationEvent>>();