1
2
3
4
5
6
7
8
9
10
11
12
13 package org.abstracthorizon.danube.http.matcher;
14
15
16
17
18
19
20 public class PatternBeanInfo extends AbstractMatcherBeanInfo {
21
22
23
24
25 public PatternBeanInfo() {
26 this(Pattern.class);
27 }
28
29
30
31
32
33 protected PatternBeanInfo(Class<?> cls) {
34 super(cls);
35 }
36
37
38
39
40 public void init() {
41 super.init();
42
43 addProperty("pattern", "Pattern as a string");
44
45 addProperty("componentPath", "Component path to be used when matched");
46
47 addProperty("matchAsComponentPath", "Match as component path");
48
49 addProperty("compiledPattern", "Compiled Pattern", true, false);
50
51 }
52
53 }