1
2
3
4
5
6
7 package org.mule.config.spring.parsers.specific.properties;
8
9 import org.mule.config.spring.parsers.assembly.MapEntryCombiner;
10 import org.mule.config.spring.parsers.collection.ChildSingletonMapDefinitionParser;
11
12 import org.w3c.dom.Element;
13
14 public class SimplePropertyDefinitionParser extends ChildSingletonMapDefinitionParser
15 {
16
17 public SimplePropertyDefinitionParser()
18 {
19 super(MapEntryCombiner.VALUE);
20 }
21
22 protected void preProcess(Element element)
23 {
24 super.preProcess(element);
25
26
27
28 getTargetPropertyConfiguration().addCollection(MapEntryCombiner.VALUE);
29 }
30
31 }