Renamed AbstractEndpointParser to AbstractConsumerEndpointParser.
This commit is contained in:
@@ -34,7 +34,7 @@ import org.springframework.util.xml.DomUtils;
|
||||
*
|
||||
* @author Mark Fisher
|
||||
*/
|
||||
public abstract class AbstractEndpointParser extends AbstractSingleBeanDefinitionParser {
|
||||
public abstract class AbstractConsumerEndpointParser extends AbstractSingleBeanDefinitionParser {
|
||||
|
||||
protected static final String REF_ATTRIBUTE = "ref";
|
||||
|
||||
@@ -33,7 +33,7 @@ import org.springframework.util.StringUtils;
|
||||
* @author Marius Bogoevici
|
||||
* @author Mark Fisher
|
||||
*/
|
||||
public class AggregatorParser extends AbstractEndpointParser {
|
||||
public class AggregatorParser extends AbstractConsumerEndpointParser {
|
||||
|
||||
private static final String COMPLETION_STRATEGY_REF_ATTRIBUTE = "completion-strategy";
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ import org.springframework.integration.filter.MethodInvokingSelector;
|
||||
*
|
||||
* @author Mark Fisher
|
||||
*/
|
||||
public class FilterParser extends AbstractEndpointParser {
|
||||
public class FilterParser extends AbstractConsumerEndpointParser {
|
||||
|
||||
@Override
|
||||
protected BeanDefinitionBuilder parseConsumer(Element element, ParserContext parserContext) {
|
||||
|
||||
@@ -27,7 +27,7 @@ import org.springframework.integration.aggregator.Resequencer;
|
||||
*
|
||||
* @author Marius Bogoevici
|
||||
*/
|
||||
public class ResequencerParser extends AbstractEndpointParser {
|
||||
public class ResequencerParser extends AbstractConsumerEndpointParser {
|
||||
|
||||
private static final String DISCARD_CHANNEL_ATTRIBUTE = "discard-channel";
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ import org.springframework.integration.router.RouterEndpoint;
|
||||
*
|
||||
* @author Mark Fisher
|
||||
*/
|
||||
public class RouterParser extends AbstractEndpointParser {
|
||||
public class RouterParser extends AbstractConsumerEndpointParser {
|
||||
|
||||
@Override
|
||||
protected BeanDefinitionBuilder parseConsumer(Element element, ParserContext parserContext) {
|
||||
|
||||
@@ -28,7 +28,7 @@ import org.springframework.integration.message.MessageMappingMethodInvoker;
|
||||
*
|
||||
* @author Mark Fisher
|
||||
*/
|
||||
public class ServiceActivatorParser extends AbstractEndpointParser {
|
||||
public class ServiceActivatorParser extends AbstractConsumerEndpointParser {
|
||||
|
||||
@Override
|
||||
protected BeanDefinitionBuilder parseConsumer(Element element, ParserContext parserContext) {
|
||||
|
||||
@@ -29,7 +29,7 @@ import org.springframework.util.StringUtils;
|
||||
*
|
||||
* @author Mark Fisher
|
||||
*/
|
||||
public class SplitterParser extends AbstractEndpointParser {
|
||||
public class SplitterParser extends AbstractConsumerEndpointParser {
|
||||
|
||||
@Override
|
||||
protected BeanDefinitionBuilder parseConsumer(Element element, ParserContext parserContext) {
|
||||
|
||||
@@ -28,7 +28,7 @@ import org.springframework.integration.transformer.TransformerEndpoint;
|
||||
*
|
||||
* @author Mark Fisher
|
||||
*/
|
||||
public class TransformerParser extends AbstractEndpointParser {
|
||||
public class TransformerParser extends AbstractConsumerEndpointParser {
|
||||
|
||||
@Override
|
||||
protected BeanDefinitionBuilder parseConsumer(Element element, ParserContext parserContext) {
|
||||
|
||||
@@ -21,14 +21,14 @@ import org.w3c.dom.Element;
|
||||
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
|
||||
import org.springframework.beans.factory.support.BeanDefinitionReaderUtils;
|
||||
import org.springframework.beans.factory.xml.ParserContext;
|
||||
import org.springframework.integration.config.AbstractEndpointParser;
|
||||
import org.springframework.integration.config.AbstractConsumerEndpointParser;
|
||||
import org.springframework.integration.transformer.Transformer;
|
||||
import org.springframework.integration.transformer.TransformerEndpoint;
|
||||
|
||||
/**
|
||||
* @author Mark Fisher
|
||||
*/
|
||||
public abstract class AbstractTransformerParser extends AbstractEndpointParser {
|
||||
public abstract class AbstractTransformerParser extends AbstractConsumerEndpointParser {
|
||||
|
||||
@Override
|
||||
protected BeanDefinitionBuilder parseConsumer(Element element, ParserContext parserContext) {
|
||||
|
||||
Reference in New Issue
Block a user