Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ExceptionTXFilterDefinitionParser |
|
| 1.0;1 |
1 | /* | |
2 | * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com | |
3 | * The software in this package is published under the terms of the CPAL v1.0 | |
4 | * license, a copy of which has been included with this distribution in the | |
5 | * LICENSE.txt file. | |
6 | */ | |
7 | package org.mule.config.spring.parsers.specific; | |
8 | ||
9 | import org.mule.config.spring.parsers.generic.ChildDefinitionParser; | |
10 | import org.mule.routing.filters.WildcardFilter; | |
11 | ||
12 | /** | |
13 | * TODO | |
14 | */ | |
15 | public class ExceptionTXFilterDefinitionParser extends ChildDefinitionParser | |
16 | { | |
17 | /** | |
18 | * The class will be inferred from the class attribute | |
19 | * | |
20 | * @param setterMethod The target method (where the child will be injected) | |
21 | */ | |
22 | public ExceptionTXFilterDefinitionParser(String setterMethod) | |
23 | { | |
24 | 0 | super(setterMethod, WildcardFilter.class); |
25 | 0 | addAlias("exception-pattern", "pattern"); |
26 | ||
27 | 0 | } |
28 | } |