1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
package org.mule.module.scripting.config; |
8 | |
|
9 | |
import org.mule.config.spring.parsers.generic.MuleOrphanDefinitionParser; |
10 | |
import org.mule.module.scripting.component.GroovyRefreshableBeanBuilder; |
11 | |
|
12 | |
import org.w3c.dom.Element; |
13 | |
|
14 | |
public class GroovyRefreshableBeanBuilderParser extends MuleOrphanDefinitionParser |
15 | |
{ |
16 | |
|
17 | |
public GroovyRefreshableBeanBuilderParser(boolean singleton) |
18 | |
{ |
19 | 0 | super(singleton); |
20 | 0 | addIgnored("name"); |
21 | 0 | } |
22 | |
|
23 | |
protected Class getBeanClass(Element element) |
24 | |
{ |
25 | 0 | return GroovyRefreshableBeanBuilder.class; |
26 | |
} |
27 | |
|
28 | |
|
29 | |
} |
30 | |
|
31 | |
|