1
2
3
4
5
6
7 package org.mule.module.spring.config;
8
9 import org.mule.config.spring.parsers.generic.ChildDefinitionParser;
10 import org.mule.module.spring.objectstore.SpringCacheObjectStore;
11
12 import org.springframework.beans.factory.xml.NamespaceHandlerSupport;
13
14 public class SpringExtrasNamespaceHandler extends NamespaceHandlerSupport
15 {
16
17 public void init()
18 {
19 registerBeanDefinitionParser("spring-store", new ChildDefinitionParser("store", SpringCacheObjectStore.class));
20 }
21 }