Example usage for org.springframework.integration.config.xml AbstractIntegrationNamespaceHandler subclass-usage

List of usage examples for org.springframework.integration.config.xml AbstractIntegrationNamespaceHandler subclass-usage

Introduction

In this page you can find the example usage for org.springframework.integration.config.xml AbstractIntegrationNamespaceHandler subclass-usage.

Usage

From source file org.acme.echo.module.config.ModuleNamespaceHandler.java

/**
 * NamespaceHandler for the echo module.
 * 
 * @author Oleg Zhurakousky
 */
public class ModuleNamespaceHandler extends AbstractIntegrationNamespaceHandler {

From source file com.minderupt.integration.pushmsg.config.PushMsgNamespaceHandler.java

public class PushMsgNamespaceHandler extends AbstractIntegrationNamespaceHandler {

    @Override
    public void init() {
        this.registerBeanDefinitionParser("outbound-apns-pushmsg-adapter",
                new APNSPushMessageOutboundChannelAdapterParser());

From source file sipackage.config.xml.SIAdapterUpperPrefixNamespaceHandler.java

/**
 * The namespace handler for the SIAdapterUpperPrefix namespace
 *
 * @author SI-TEMPLATE-AUTHOR
 * @since SI-TEMPLATE-VERSION
 *

From source file org.opencredo.cloud.storage.si.adapter.config.NamespaceHandler.java

/**
 * @author Eren Aykin (eren.aykin@opencredo.com)
 */
public class NamespaceHandler extends AbstractIntegrationNamespaceHandler {

    public void init() {

From source file com.apress.prospringintegration.customadapters.outbound.config.ShellMessagingNamespaceHandler.java

public class ShellMessagingNamespaceHandler extends AbstractIntegrationNamespaceHandler {
    @Override
    public void init() {
        registerBeanDefinitionParser("outbound-channel-adapter", new ShellMessagingOutboundChannelAdapterParser());
    }

From source file com.apress.prospringintegration.customadapters.inbound.eventdriven.config.DirectoryMonitorNamespaceHandler.java

public class DirectoryMonitorNamespaceHandler extends AbstractIntegrationNamespaceHandler {

    public void init() {
        registerBeanDefinitionParser("inbound-channel-adapter", new DirectoryMonitorInboundFileEndpointParser());
    }

From source file com.apress.prospringintegration.customadapters.inbound.pollerdriven.config.StockNamespaceHandler.java

public class StockNamespaceHandler extends AbstractIntegrationNamespaceHandler {

    public void init() {
        registerBeanDefinitionParser("inbound-channel-adapter", new StockPollingMessageSourceParser());
    }