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