1
2
3
4
5
6
7
8
9
10 package org.mule.module.json.config;
11
12 import org.mule.api.annotations.expression.JsonPath;
13 import org.mule.api.annotations.meta.Evaluator;
14 import org.mule.api.expression.ExpressionAnnotationParser;
15 import org.mule.expression.ExpressionConfig;
16 import org.mule.expression.transformers.ExpressionArgument;
17
18 import java.lang.annotation.Annotation;
19
20
21
22
23 public class JsonPathAnnotationParser implements ExpressionAnnotationParser
24 {
25 public ExpressionArgument parse(Annotation annotation, Class<?> parameterType)
26 {
27 Evaluator evaluator = annotation.annotationType().getAnnotation(Evaluator.class);
28
29 return new ExpressionArgument(null, new ExpressionConfig(((JsonPath) annotation).value(),
30 evaluator.value(), null), ((JsonPath) annotation).optional(), parameterType);
31 }
32
33 public boolean supports(Annotation annotation)
34 {
35 return annotation instanceof JsonPath;
36 }
37 }