INT-1562 renamed inbound channel adapter parsers
This commit is contained in:
@@ -35,7 +35,7 @@ import org.springframework.integration.config.xml.IntegrationNamespaceUtils;
|
|||||||
*
|
*
|
||||||
* @author Josh Long
|
* @author Josh Long
|
||||||
*/
|
*/
|
||||||
public class FtpMessageSourceBeanDefinitionParser extends AbstractPollingInboundChannelAdapterParser {
|
public class FtpInboundChannelAdapterParser extends AbstractPollingInboundChannelAdapterParser {
|
||||||
|
|
||||||
private Set<String> receiveAttrs = new HashSet<String>(Arrays.asList(
|
private Set<String> receiveAttrs = new HashSet<String>(Arrays.asList(
|
||||||
"auto-delete-remote-files-on-sync,filename-pattern,local-working-directory".split(",")));
|
"auto-delete-remote-files-on-sync,filename-pattern,local-working-directory".split(",")));
|
||||||
@@ -51,7 +51,7 @@ public class FtpNamespaceHandler extends AbstractIntegrationNamespaceHandler {
|
|||||||
|
|
||||||
|
|
||||||
public void init() {
|
public void init() {
|
||||||
registerBeanDefinitionParser("inbound-channel-adapter", new FtpMessageSourceBeanDefinitionParser());
|
registerBeanDefinitionParser("inbound-channel-adapter", new FtpInboundChannelAdapterParser());
|
||||||
registerBeanDefinitionParser("outbound-channel-adapter", new FtpOutboundChannelAdapterParser());
|
registerBeanDefinitionParser("outbound-channel-adapter", new FtpOutboundChannelAdapterParser());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ import org.springframework.integration.config.xml.IntegrationNamespaceUtils;
|
|||||||
*
|
*
|
||||||
* @author Josh Long
|
* @author Josh Long
|
||||||
*/
|
*/
|
||||||
public class FtpsMessageSourceBeanDefinitionParser extends AbstractPollingInboundChannelAdapterParser {
|
public class FtpsInboundChannelAdapterParser extends AbstractPollingInboundChannelAdapterParser {
|
||||||
|
|
||||||
private Set<String> receiveAttrs = new HashSet<String>(Arrays.asList(
|
private Set<String> receiveAttrs = new HashSet<String>(Arrays.asList(
|
||||||
"auto-delete-remote-files-on-sync,filename-pattern,local-working-directory".split(",")));
|
"auto-delete-remote-files-on-sync,filename-pattern,local-working-directory".split(",")));
|
||||||
@@ -27,7 +27,7 @@ public class FtpsNamespaceHandler extends FtpNamespaceHandler {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void init() {
|
public void init() {
|
||||||
this.registerBeanDefinitionParser("inbound-channel-adapter", new FtpsMessageSourceBeanDefinitionParser());
|
this.registerBeanDefinitionParser("inbound-channel-adapter", new FtpsInboundChannelAdapterParser());
|
||||||
this.registerBeanDefinitionParser("outbound-channel-adapter", new FtpsOutboundChannelAdapterParser());
|
this.registerBeanDefinitionParser("outbound-channel-adapter", new FtpsOutboundChannelAdapterParser());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user