Example usage for org.springframework.beans.factory.xml NamespaceHandlerSupport subclass-usage

List of usage examples for org.springframework.beans.factory.xml NamespaceHandlerSupport subclass-usage

Introduction

In this page you can find the example usage for org.springframework.beans.factory.xml NamespaceHandlerSupport subclass-usage.

Usage

From source file org.makersoft.shards.spring.ShardsNamespaceHandler.java

/**
 * shards???
 */
public class ShardsNamespaceHandler extends NamespaceHandlerSupport {

    @Override

From source file org.mule.module.commons.config.CommonsNamespaceHandler.java

/**
 * Registers a Bean Definition Parser for handling elements defned in META-INF/mule-mulecommons.xsd
 *
 */
public class CommonsNamespaceHandler extends NamespaceHandlerSupport {
    public void init() {

From source file com.inspiresoftware.lib.dto.geda.config.GeDANamespaceHandler.java

/**
 * Spring XML parser handler.
 * <p/>
 * User: denispavlov
 * Date: Jan 25, 2012
 * Time: 4:08:07 PM

From source file org.mule.module.cache.CacheNamespaceHandler.java

public class CacheNamespaceHandler extends NamespaceHandlerSupport {
    public void init() {
        registerBeanDefinitionParser("cache-processor",
                new ChildDefinitionParser("messageProcessor", CachingMessageProcessor.class));
        registerBeanDefinitionParser("http-cache-processor",
                new ChildDefinitionParser("messageProcessor", HttpCachingMessageProcessor.class));

From source file org.carewebframework.shell.help.HelpXmlHandler.java

/**
 * This class registers the xml parser for the help namespace.
 */
public class HelpXmlHandler extends NamespaceHandlerSupport {

    @Override

From source file org.carewebframework.shell.themes.ThemeXmlHandler.java

/**
 * This class registers the xml parser for the theme namespace.
 */
public class ThemeXmlHandler extends NamespaceHandlerSupport {

    @Override

From source file org.carewebframework.shell.plugins.PluginXmlHandler.java

/**
 * This class registers the xml parser for the plugin namespace.
 */
public class PluginXmlHandler extends NamespaceHandlerSupport {

    @Override

From source file org.mule.module.iso8583.config.Iso8583NamespaceHandler.java

/**
 * Registers a Bean Definition Parser for handling elements defned in META-INF/mule-iso8583.xsd
 *
 */
public class Iso8583NamespaceHandler extends NamespaceHandlerSupport {
    public void init() {

From source file pl.chilldev.web.spring.config.WebNamespaceHandler.java

/**
 * Handles Spring XML configuration namespace for ChillDev-Web.
 *
 * @version 0.0.2
 * @since 0.0.1
 */

From source file org.mule.module.mappack.config.MapPackNamespaceHandler.java

public class MapPackNamespaceHandler extends NamespaceHandlerSupport {
    public void init() {
        registerBeanDefinitionParser("nested-map-transformer", new NestedMapDefinitionParser());
        registerBeanDefinitionParser("mapvalue", new MapValueDefinitionParser("mapvalue", Mapvalue.class));
        registerBeanDefinitionParser("date-time-mapvalue",
                new DateTimeMapValueDefinitionParser(DateTimeMapValue.class));