|
1 | 1 | {
|
2 |
| - "collected_classes_path": "", |
3 |
| - "collected_classes_info_path": "", |
4 |
| - "detected_entry_points_path": "", |
5 |
| - "di_configuration_path": "", |
6 |
| - "pattern_group": [ |
| 2 | + "collectedClassesPath": "", |
| 3 | + "collectedClassesInfoPath": "", |
| 4 | + "detectedEntryPointsPath": "", |
| 5 | + "diConfigurationPath": "", |
| 6 | + "patternGroup": [ |
7 | 7 | {
|
8 | 8 | "id": "Spring MVC",
|
9 | 9 | "patterns": [
|
10 | 10 | {
|
11 |
| - "method_pattern": |
| 11 | + "methodPattern": |
12 | 12 | {
|
13 | 13 | "annotations": ["org.springframework.web.bind.annotation.RequestMapping",
|
14 | 14 | "org.springframework.web.bind.annotation.PostMapping",
|
|
19 | 19 | }
|
20 | 20 | },
|
21 | 21 | {
|
22 |
| - "class_pattern": { |
| 22 | + "classPattern": { |
23 | 23 | "implements": ["org.springframework.web.servlet.mvc.Controller"]
|
24 | 24 | },
|
25 |
| - "method_pattern": { |
| 25 | + "methodPattern": { |
26 | 26 | "arguments": ["javax.servlet.http.HttpServletRequest", "javax.servlet.http.HttpServletResponse"],
|
27 | 27 | "returns": ["org.springframework.web.servlet.ModelAndView"]
|
28 | 28 | }
|
|
33 | 33 | "id": "JWS",
|
34 | 34 | "patterns": [
|
35 | 35 | {
|
36 |
| - "class_pattern": { |
| 36 | + "classPattern": { |
37 | 37 | "annotations": ["javax.jws.WebService"]
|
38 | 38 | }
|
39 | 39 | },
|
40 | 40 | {
|
41 |
| - "method_pattern": { |
| 41 | + "methodPattern": { |
42 | 42 | "annotations": ["javax.jws.WebMethod"]
|
43 | 43 | }
|
44 | 44 | }
|
|
48 | 48 | "id": "Java WS RS",
|
49 | 49 | "patterns": [
|
50 | 50 | {
|
51 |
| - "method_pattern": { |
| 51 | + "methodPattern": { |
52 | 52 | "annotations": ["javax.ws.rs.OPTIONS",
|
53 | 53 | "javax.ws.rs.POST",
|
54 | 54 | "javax.ws.rs.PUT",
|
|
64 | 64 | "id": "Alfresco",
|
65 | 65 | "patterns": [
|
66 | 66 | {
|
67 |
| - "method_pattern": { |
| 67 | + "methodPattern": { |
68 | 68 | "annotations": [
|
69 | 69 | "org.alfresco.web.app.servlet.ajax.InvokeCommand",
|
70 | 70 | "org.alfresco.web.app.servlet.ajax.GetCommand"
|
|
77 | 77 | "id": "Sakai",
|
78 | 78 | "patterns": [
|
79 | 79 | {
|
80 |
| - "class_pattern": { |
| 80 | + "classPattern": { |
81 | 81 | "extends": ["org.sakaiproject.cheftool.VelocityPortletPaneledAction"]
|
82 | 82 | },
|
83 |
| - "method_pattern": { |
| 83 | + "methodPattern": { |
84 | 84 | "arguments": [
|
85 | 85 | "org.sakaiproject.cheftool.RunData",
|
86 | 86 | "org.sakaiproject.cheftool.Context"
|
87 | 87 | ]
|
88 | 88 | }
|
89 | 89 | },
|
90 | 90 | {
|
91 |
| - "class_pattern": { |
| 91 | + "classPattern": { |
92 | 92 | "extends": ["org.sakaiproject.cheftool.VelocityPortletPaneledAction"]
|
93 | 93 | },
|
94 |
| - "method_pattern": { |
| 94 | + "methodPattern": { |
95 | 95 | "arguments": ["org.sakaiproject.cheftool.RunData"]
|
96 | 96 | }
|
97 | 97 | }
|
|
101 | 101 | "id": "Javax Servlet",
|
102 | 102 | "patterns": [
|
103 | 103 | {
|
104 |
| - "class_pattern": { |
| 104 | + "classPattern": { |
105 | 105 | "extends": [
|
106 | 106 | "javax.servlet.http.HttpServlet"
|
107 | 107 | ]
|
108 | 108 | },
|
109 |
| - "method_pattern": { |
| 109 | + "methodPattern": { |
110 | 110 | "names": [
|
111 | 111 | "doDelete",
|
112 | 112 | "doGet",
|
|
124 | 124 | "id": "GWT",
|
125 | 125 | "patterns": [
|
126 | 126 | {
|
127 |
| - "class_pattern": { |
| 127 | + "classPattern": { |
128 | 128 | "implements": [
|
129 | 129 | "com.google.gwt.user.client.rpc.RemoteService"
|
130 | 130 | ]
|
|
136 | 136 | "id": "Play!",
|
137 | 137 | "patterns": [
|
138 | 138 | {
|
139 |
| - "class_pattern": { |
| 139 | + "classPattern": { |
140 | 140 | "extends": [
|
141 | 141 | "play.mvc.Controller"
|
142 | 142 | ]
|
143 | 143 | },
|
144 |
| - "method_pattern": { |
| 144 | + "methodPattern": { |
145 | 145 | "returns": ["play.mvc.Result"]
|
146 | 146 | }
|
147 | 147 | },
|
148 | 148 | {
|
149 |
| - "class_pattern": { |
| 149 | + "classPattern": { |
150 | 150 | "extends": [
|
151 | 151 | "play.mvc.Action", "play.mvc.Action.Simple"
|
152 | 152 | ]
|
153 | 153 | },
|
154 |
| - "method_pattern": { |
| 154 | + "methodPattern": { |
155 | 155 | "names": ["call"],
|
156 | 156 | "arguments": ["play.mvc.Http.Context"]
|
157 | 157 | }
|
|
162 | 162 | "id": "Struts",
|
163 | 163 | "patterns": [
|
164 | 164 | {
|
165 |
| - "class_pattern": { |
| 165 | + "classPattern": { |
166 | 166 | "extends": ["com.opensymphony.xwork2.ActionSupport"]
|
167 | 167 | },
|
168 |
| - "method_pattern": { |
| 168 | + "methodPattern": { |
169 | 169 | "names": ["execute"],
|
170 | 170 | "returns": ["java.lang.String"]
|
171 | 171 | }
|
|
0 commit comments