Changes include Metadata support, Upload tosca policy model and Loop Template
[clamp.git] / src / main / resources / clds / camel / rest / clamp-api-v2.xml
1 <rests xmlns="http://camel.apache.org/schema/spring">
2         <rest>
3                 <get uri="/v2/loop/getAllNames" outType="java.lang.String[]"
4                         produces="application/json">
5                         <route>
6                                 <removeHeaders pattern="*" />
7                                 <doTry>
8                                         <to
9                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET ALL Loop')" />
10                                         <to
11                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','read')" />
12                                         <to
13                                                 uri="bean:org.onap.clamp.loop.LoopController?method=getLoopNames()" />
14                                         <to
15                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
16                                         <doCatch>
17                                                 <exception>java.lang.Exception</exception>
18                                                 <handled>
19                                                         <constant>false</constant>
20                                                 </handled>
21                                                 <to
22                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
23                                         </doCatch>
24                                 </doTry>
25                         </route>
26                 </get>
27                 <get uri="/v2/loop/{loopName}" outType="org.onap.clamp.loop.Loop"
28                         produces="application/json">
29                         <route>
30                                 <removeHeaders pattern="*" excludePattern="loopName" />
31                                 <doTry>
32                                         <to
33                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET Loop')" />
34                                         <to
35                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','read')" />
36                                         <to
37                                                 uri="bean:org.onap.clamp.loop.LoopController?method=getLoop(${header.loopName})" />
38                                         <to
39                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
40                                         <doCatch>
41                                                 <exception>java.lang.Exception</exception>
42                                                 <handled>
43                                                         <constant>false</constant>
44                                                 </handled>
45                                                 <to
46                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
47                                         </doCatch>
48                                 </doTry>
49                         </route>
50                 </get>
51                 <get uri="/v2/loop/svgRepresentation/{loopName}"
52                         outType="java.lang.String" produces="application/xml">
53                         <route>
54                                 <removeHeaders pattern="*" excludePattern="loopName" />
55                                 <doTry>
56                                         <to
57                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Get SVG Representation')" />
58                                         <to
59                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','read')" />
60                                         <to
61                                                 uri="bean:org.onap.clamp.loop.LoopController?method=getSvgRepresentation(${header.loopName})" />
62                                         <to
63                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
64                                         <doCatch>
65                                                 <exception>java.lang.Exception</exception>
66                                                 <handled>
67                                                         <constant>false</constant>
68                                                 </handled>
69                                                 <to
70                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
71                                         </doCatch>
72                                 </doTry>
73                         </route>
74                 </get>
75
76                 <post uri="/v2/loop/updateGlobalProperties/{loopName}"
77                         type="com.google.gson.JsonObject" consumes="application/json"
78                         outType="org.onap.clamp.loop.Loop" produces="application/json">
79                         <route>
80                                 <removeHeaders pattern="*" excludePattern="loopName" />
81                                 <doTry>
82                                         <to
83                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Update the global properties')" />
84                                         <to
85                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
86                                         <setHeader headerName="GlobalPropertiesJson">
87                                                 <simple>${body}</simple>
88                                         </setHeader>
89                                         <to uri="direct:load-loop" />
90                                         <to
91                                                 uri="bean:org.onap.clamp.loop.LoopController?method=updateGlobalPropertiesJson(${header.loopName},${header.GlobalPropertiesJson})" />
92                                         <to
93                                                 uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('Global Properties UPDATED','INFO',${exchangeProperty[loopObject]})" />
94                                         <to
95                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
96                                         <doCatch>
97                                                 <exception>java.lang.Exception</exception>
98                                                 <handled>
99                                                         <constant>false</constant>
100                                                 </handled>
101                                                 <to
102                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
103                                         </doCatch>
104                                 </doTry>
105                         </route>
106                 </post>
107                 <post uri="/v2/loop/updateOperationalPolicies/{loopName}"
108                         type="com.google.gson.JsonArray" consumes="application/json"
109                         outType="org.onap.clamp.loop.Loop" produces="application/json">
110                         <route>
111                                 <removeHeaders pattern="*" excludePattern="loopName" />
112                                 <doTry>
113                                         <to
114                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Update operational policies')" />
115                                         <to
116                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
117                                         <setHeader headerName="OperationalPoliciesArray">
118                                                 <simple>${body}</simple>
119                                         </setHeader>
120                                         <to uri="direct:load-loop" />
121                                         <to
122                                                 uri="bean:org.onap.clamp.loop.LoopController?method=updateOperationalPolicies(${header.loopName},${header.OperationalPoliciesArray})" />
123                                         <to
124                                                 uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('Operational and Guard policies UPDATED','INFO',${exchangeProperty[loopObject]})" />
125                                         <to
126                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
127                                         <doCatch>
128                                                 <exception>java.lang.Exception</exception>
129                                                 <handled>
130                                                         <constant>false</constant>
131                                                 </handled>
132                                                 <to
133                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
134                                         </doCatch>
135                                 </doTry>
136                         </route>
137                 </post>
138                 <post uri="/v2/loop/updateMicroservicePolicy/{loopName}"
139                         type="org.onap.clamp.policy.microservice.MicroServicePolicy"
140                         consumes="application/json"
141                         outType="org.onap.clamp.policy.microservice.MicroServicePolicy"
142                         produces="application/json">
143                         <route>
144                                 <removeHeaders pattern="*" excludePattern="loopName" />
145                                 <doTry>
146                                         <to
147                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Update Microservice policies')" />
148                                         <to
149                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
150                                         <setProperty propertyName="MicroServicePolicyObject">
151                                                 <simple>${body}</simple>
152                                         </setProperty>
153
154                                         <to uri="direct:load-loop" />
155                                         <to
156                                                 uri="bean:org.onap.clamp.loop.LoopController?method=updateMicroservicePolicy(${header.loopName},${exchangeProperty[MicroServicePolicyObject]})" />
157                                         <to
158                                                 uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('Micro Service policies UPDATED','INFO',${exchangeProperty[loopObject]})" />
159                                         <to
160                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
161                                         <doCatch>
162                                                 <exception>java.lang.Exception</exception>
163                                                 <handled>
164                                                         <constant>false</constant>
165                                                 </handled>
166                                                 <to
167                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
168                                         </doCatch>
169                                 </doTry>
170                         </route>
171                 </post>
172                 <put uri="/v2/loop/deploy/{loopName}"
173                         outType="org.onap.clamp.loop.Loop" produces="application/json">
174                         <route>
175                                 <removeHeaders pattern="*" excludePattern="loopName" />
176                                 <doTry>
177                                         <log loggingLevel="INFO"
178                                                 message="DCAE DEPLOY request for loop: ${header.loopName}" />
179                                         <to
180                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'DCAE DEPLOY request')" />
181                                         <to
182                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
183                                         <to uri="direct:load-loop" />
184                                         <to
185                                                 uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('DCAE DEPLOY request','INFO',${exchangeProperty[loopObject]})" />
186
187                                         <to uri="direct:deploy-loop" />
188
189                                         <log loggingLevel="INFO"
190                                                 message="DEPLOY request successfully executed for loop: ${header.loopName}" />
191                                         <to
192                                                 uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('DEPLOY request successfully executed','INFO',${exchangeProperty[loopObject]})" />
193                                         <to
194                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
195                                         <doCatch>
196                                                 <exception>java.lang.Exception</exception>
197                                                 <handled>
198                                                         <constant>false</constant>
199                                                 </handled>
200                                                 <to
201                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
202                                                 <log loggingLevel="ERROR"
203                                                         message="DEPLOY request failed for loop: ${header.loopName}" />
204                                                 <to
205                                                         uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('DEPLOY request failed, Error reported: ${exception} - Body: ${exception.responseBody}','ERROR',${exchangeProperty[loopObject]})" />
206                                         </doCatch>
207                                 </doTry>
208                         </route>
209                 </put>
210                 <put uri="/v2/loop/refreshOpPolicyJsonSchema/{loopName}"
211                         outType="org.onap.clamp.loop.Loop" produces="application/json">
212                         <route>
213                                 <removeHeaders pattern="*" excludePattern="loopName" />
214                                 <doTry>
215                                         <log loggingLevel="INFO"
216                                                 message="Refresh Operational Policy UI for loop: ${header.loopName}" />
217                                         <to
218                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'REFRESH OP Policy UI request')" />
219                                         <to
220                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
221                                         <to uri="direct:load-loop" />
222                                         <to
223                                                 uri="bean:org.onap.clamp.loop.LoopController?method=refreshOpPolicyJsonRepresentation(${header.loopName})" />
224                                         <log loggingLevel="INFO"
225                                                 message="REFRESH request successfully executed for loop: ${header.loopName}" />
226                                         <to
227                                                 uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('REFRESH request successfully executed','INFO',${exchangeProperty[loopObject]})" />
228                                         <to
229                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
230                                         <doCatch>
231                                                 <exception>java.lang.Exception</exception>
232                                                 <handled>
233                                                         <constant>false</constant>
234                                                 </handled>
235                                                 <to
236                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
237                                                 <log loggingLevel="ERROR"
238                                                         message="REFRESH request failed for loop: ${header.loopName}" />
239                                                 <to
240                                                         uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('REFRESH request failed, Error reported: ${exception} - Body: ${exception.responseBody}','ERROR',${exchangeProperty[loopObject]})" />
241                                         </doCatch>
242                                 </doTry>
243                         </route>
244                 </put>
245                 <put uri="/v2/loop/undeploy/{loopName}"
246                         outType="org.onap.clamp.loop.Loop" produces="application/json">
247                         <route>
248                                 <removeHeaders pattern="*" excludePattern="loopName" />
249                                 <doTry>
250                                         <log loggingLevel="INFO"
251                                                 message="DCAE UNDEPLOY request for loop: ${header.loopName}" />
252                                         <to
253                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'DCAE UNDEPLOY request')" />
254                                         <to
255                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
256                                         <to uri="direct:load-loop" />
257                                         <to
258                                                 uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('DCAE UNDEPLOY request','INFO',${exchangeProperty[loopObject]})" />
259                                         <to uri="direct:undeploy-loop" />
260
261                                         <log loggingLevel="INFO"
262                                                 message="UNDEPLOY request successfully executed for loop: ${header.loopName}" />
263                                         <to
264                                                 uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('UNDEPLOY request successfully executed','INFO',${exchangeProperty[loopObject]})" />
265                                         <to
266                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
267                                         <doCatch>
268                                                 <exception>java.lang.Exception</exception>
269                                                 <handled>
270                                                         <constant>false</constant>
271                                                 </handled>
272                                                 <to
273                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
274                                                 <log loggingLevel="ERROR"
275                                                         message="UNDEPLOY request failed for loop: ${header.loopName}" />
276                                                 <to
277                                                         uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('UNDEPLOY request failed, Error reported: ${exception} - Body: ${exception.responseBody}','ERROR',${exchangeProperty[loopObject]})" />
278                                         </doCatch>
279                                 </doTry>
280                         </route>
281                 </put>
282                 <put uri="/v2/loop/stop/{loopName}"
283                         outType="org.onap.clamp.loop.Loop" produces="application/json">
284                         <route>
285                                 <removeHeaders pattern="*" excludePattern="loopName" />
286                                 <doTry>
287                                         <log loggingLevel="INFO"
288                                                 message="STOP request for loop: ${header.loopName}" />
289                                         <to
290                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*,'STOP request')" />
291                                         <to
292                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
293                                         <to uri="direct:load-loop" />
294                                         <to
295                                                 uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('STOP request','INFO',${exchangeProperty[loopObject]})" />
296
297                                         <to uri="direct:remove-all-policy-from-active-pdp-group" />
298                                         <log loggingLevel="INFO"
299                                                 message="STOP request successfully executed for loop: ${header.loopName}" />
300                                         <to
301                                                 uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('STOP request successfully executed','INFO',${exchangeProperty[loopObject]})" />
302                                         <to
303                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
304                                         <doCatch>
305                                                 <exception>java.lang.Exception</exception>
306                                                 <handled>
307                                                         <constant>false</constant>
308                                                 </handled>
309                                                 <to
310                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
311                                                 <log loggingLevel="ERROR"
312                                                         message="STOP request failed for loop: $${header.loopName}" />
313                                                 <to
314                                                         uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('STOP request failed, Error reported: ${exception} - Body: ${exception.responseBody}','ERROR',${exchangeProperty[loopObject]})" />
315                                         </doCatch>
316                                 </doTry>
317                         </route>
318                 </put>
319                 <put uri="/v2/loop/restart/{loopName}"
320                         outType="org.onap.clamp.loop.Loop" produces="application/json">
321                         <route>
322                                 <removeHeaders pattern="*" excludePattern="loopName" />
323                                 <doTry>
324                                         <log loggingLevel="INFO"
325                                                 message="RESTART request for loop: ${header.loopName}" />
326                                         <to
327                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*,'RESTART request')" />
328                                         <to
329                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
330                                         <to uri="direct:load-loop" />
331
332                                         <to
333                                                 uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('RESTART request','INFO',${exchangeProperty[loopObject]})" />
334
335                                         <to uri="direct:add-all-to-active-pdp-group" />
336                                         <log loggingLevel="INFO"
337                                                 message="RESTART request successfully executed for loop: ${header.loopName}" />
338                                         <to
339                                                 uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('RESTART request successfully executed','INFO',${exchangeProperty[loopObject]})" />
340                                         <to
341                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
342                                         <doCatch>
343                                                 <exception>java.lang.Exception</exception>
344                                                 <handled>
345                                                         <constant>false</constant>
346                                                 </handled>
347                                                 <to
348                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
349                                                 <log loggingLevel="ERROR"
350                                                         message="RESTART request failed for loop: ${header.loopName}" />
351                                                 <to
352                                                         uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('RESTART request failed, Error reported: ${exception} - Body: ${exception.responseBody}','INFO',${exchangeProperty[loopObject]})" />
353                                         </doCatch>
354                                 </doTry>
355                         </route>
356                 </put>
357                 <put uri="/v2/loop/submit/{loopName}"
358                         outType="org.onap.clamp.loop.Loop" produces="application/json">
359                         <route>
360                                 <removeHeaders pattern="*" excludePattern="loopName" />
361                                 <doTry>
362                                         <log loggingLevel="INFO"
363                                                 message="POLICY SUBMIT request for loop: ${header.loopName}" />
364                                         <to
365                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'POLICY SUBMIT request')" />
366                                         <to
367                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
368                                         <to uri="direct:load-loop" />
369                                         <to
370                                                 uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('POLICY SUBMIT request','INFO',${exchangeProperty[loopObject]})" />
371                                         <setProperty propertyName="raiseHttpExceptionFlag">
372                                                 <simple resultType="java.lang.Boolean">false</simple>
373                                         </setProperty>
374                                         <to uri="direct:remove-all-policy-from-active-pdp-group" />
375                                         <log loggingLevel="INFO"
376                                                 message="Processing all MICRO-SERVICES policies defined in loop ${exchangeProperty[loopObject].getName()}" />
377                                         <split>
378                                                 <simple>${exchangeProperty[loopObject].getMicroServicePolicies()}
379                                                 </simple>
380                                                 <setProperty propertyName="microServicePolicy">
381                                                         <simple>${body}</simple>
382                                                 </setProperty>
383                                                 <log loggingLevel="INFO"
384                                                         message="Processing Micro Service Policy: ${exchangeProperty[microServicePolicy].getName()}" />
385                                                 <setProperty propertyName="raiseHttpExceptionFlag">
386                                                         <simple resultType="java.lang.Boolean">false</simple>
387                                                 </setProperty>
388                                                 <to uri="direct:delete-micro-service-policy" />
389                                                 <to uri="direct:create-micro-service-policy" />
390                                         </split>
391                                         <log loggingLevel="INFO"
392                                                 message="Processing all OPERATIONAL policies defined in loop ${exchangeProperty[loopObject].getName()}" />
393                                         <split>
394                                                 <simple>${exchangeProperty[loopObject].getOperationalPolicies()}
395                                                 </simple>
396                                                 <setProperty propertyName="operationalPolicy">
397                                                         <simple>${body}</simple>
398                                                 </setProperty>
399                                                 <log loggingLevel="INFO"
400                                                         message="Processing Operational Policy: ${exchangeProperty[operationalPolicy].getName()}" />
401                                                 <setProperty propertyName="raiseHttpExceptionFlag">
402                                                         <simple resultType="java.lang.Boolean">false</simple>
403                                                 </setProperty>
404
405                                                 <to uri="direct:delete-operational-policy" />
406                                                 <to uri="direct:create-operational-policy" />
407
408                                                 <log loggingLevel="INFO"
409                                                         message="Processing all GUARD policies defined in loop ${exchangeProperty[loopObject].getName()}" />
410                                                 <split>
411                                                         <simple>${exchangeProperty[operationalPolicy].createGuardPolicyPayloads().entrySet()}
412                                                         </simple>
413                                                         <setProperty propertyName="guardPolicy">
414                                                                 <simple>${body}</simple>
415                                                         </setProperty>
416                                                         <log loggingLevel="INFO"
417                                                                 message="Processing Guard Policy: ${exchangeProperty[guardPolicy].getKey()}" />
418
419                                                         <setProperty propertyName="raiseHttpExceptionFlag">
420                                                                 <simple resultType="java.lang.Boolean">false</simple>
421                                                         </setProperty>
422                                                         <to uri="direct:delete-guard-policy" />
423                                                         <to uri="direct:create-guard-policy" />
424                                                 </split>
425                                         </split>
426
427                                         <delay>
428                                                 <constant>3000</constant>
429                                         </delay>
430
431                                         <to uri="direct:add-all-to-active-pdp-group" />
432
433                                         <log loggingLevel="INFO"
434                                                 message="SUBMIT request successfully executed for loop: ${header.loopName}" />
435                                         <to
436                                                 uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('SUBMIT request successfully executed','INFO',${exchangeProperty[loopObject]})" />
437                                         <to
438                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
439                                         <doCatch>
440                                                 <exception>java.lang.Exception</exception>
441                                                 <handled>
442                                                         <constant>false</constant>
443                                                 </handled>
444                                                 <to
445                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
446                                                 <log loggingLevel="ERROR"
447                                                         message="SUBMIT request failed for loop: ${header.loopName}" />
448                                                 <to
449                                                         uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('SUBMIT request failed, Error reported: ${exception} - Body: ${exception.responseBody}','ERROR',${exchangeProperty[loopObject]})" />
450                                         </doCatch>
451                                 </doTry>
452                         </route>
453                 </put>
454                 <put uri="/v2/loop/delete/{loopName}">
455                         <route>
456                                 <removeHeaders pattern="*" excludePattern="loopName" />
457                                 <doTry>
458                                         <log loggingLevel="INFO"
459                                                 message="DELETE request for loop: ${header.loopName}" />
460                                         <to
461                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*,'DELETE request')" />
462                                         <to
463                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
464                                         <to uri="direct:load-loop" />
465                                         <to
466                                                 uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('DELETE request','INFO',${exchangeProperty[loopObject]})" />
467                                         <to uri="direct:undeploy-loop" />
468                                         <to uri="direct:remove-all-policy-from-active-pdp-group" />
469                                         <split>
470                                                 <simple>${exchangeProperty[loopObject].getMicroServicePolicies()}
471                                                 </simple>
472                                                 <setProperty propertyName="microServicePolicy">
473                                                         <simple>${body}</simple>
474                                                 </setProperty>
475                                                 <log loggingLevel="INFO"
476                                                         message="Processing Micro Service Policy: ${exchangeProperty[microServicePolicy].getName()}" />
477                                                 <to uri="direct:delete-micro-service-policy" />
478                                         </split>
479
480                                         <log loggingLevel="INFO"
481                                                 message="Processing all OPERATIONAL policies defined in loop ${exchangeProperty[loopObject].getName()}" />
482                                         <split>
483                                                 <simple>${exchangeProperty[loopObject].getOperationalPolicies()}
484                                                 </simple>
485                                                 <setProperty propertyName="operationalPolicy">
486                                                         <simple>${body}</simple>
487                                                 </setProperty>
488                                                 <log loggingLevel="INFO"
489                                                         message="Processing Operational Policy: ${exchangeProperty[operationalPolicy].getName()}" />
490                                                 <to uri="direct:delete-operational-policy" />
491                                                 <log loggingLevel="INFO"
492                                                         message="Processing all GUARD policies defined in loop ${exchangeProperty[loopObject].getName()}" />
493                                                 <split>
494                                                         <simple>${exchangeProperty[operationalPolicy].createGuardPolicyPayloads().entrySet()}
495                                                         </simple>
496                                                         <setProperty propertyName="guardPolicy">
497                                                                 <simple>${body}</simple>
498                                                         </setProperty>
499                                                         <log loggingLevel="INFO"
500                                                                 message="Processing Guard Policy: ${exchangeProperty[guardPolicy].getKey()}" />
501                                                         <to uri="direct:delete-guard-policy" />
502                                                 </split>
503                                         </split>
504                                         <to
505                                                 uri="bean:org.onap.clamp.loop.log.LoopService?method=deleteLoop(${header.loopName})" />
506                                         <log loggingLevel="INFO"
507                                                 message="DELETE request successfully executed for loop: ${header.loopName}" />
508                                         <to
509                                                 uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('DELETE request successfully executed','INFO',${exchangeProperty[loopObject]})" />
510                                         <to
511                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
512                                         <doCatch>
513                                                 <exception>java.lang.Exception</exception>
514                                                 <handled>
515                                                         <constant>false</constant>
516                                                 </handled>
517                                                 <to
518                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
519                                                 <log loggingLevel="ERROR"
520                                                         message="DELETE request failed for loop: ${header.loopName}" />
521                                                 <to
522                                                         uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('DELETE request failed, Error reported: ${exception} - Body: ${exception.responseBody}','ERROR',${exchangeProperty[loopObject]})" />
523                                         </doCatch>
524                                 </doTry>
525                         </route>
526                 </put>
527                 <get uri="/v2/loop/getstatus/{loopName}"
528                         outType="org.onap.clamp.loop.Loop" produces="application/json">
529                         <route>
530                                 <removeHeaders pattern="*" excludePattern="loopName" />
531                                 <doTry>
532                                         <log loggingLevel="INFO"
533                                                 message="GET STATUS request for loop: ${header.loopName}" />
534                                         <to
535                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET STATUS request')" />
536                                         <to
537                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','read')" />
538                                         <to uri="direct:load-loop" />
539                                         <to
540                                                 uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('GET STATUS request','INFO',${exchangeProperty[loopObject]})" />
541                                         <doTry>
542                                                 <to uri="direct:update-policy-status-for-loop" />
543                                                 <to uri="direct:update-dcae-status-for-loop" />
544                                                 <to uri="direct:update-loop-state" />
545
546                                                 <to
547                                                         uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('Get Status request successfully executed','INFO',${exchangeProperty[loopObject]})" />
548                                                 <to
549                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
550                                         </doTry>
551                                         <doCatch>
552                                                 <exception>java.lang.Exception</exception>
553                                                 <handled>
554                                                         <constant>false</constant>
555                                                 </handled>
556                                                 <to
557                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
558                                                 <log loggingLevel="ERROR"
559                                                         message="Get Status request failed for loop: ${header.loopName}" />
560                                                 <to
561                                                         uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('Get Status request failed, Error reported: ${exception} - Body: ${exception.responseBody}','ERROR',${exchangeProperty[loopObject]})" />
562                                         </doCatch>
563                                         <doFinally>
564                                                 <setBody>
565                                                         <simple>${exchangeProperty[loopObject]}</simple>
566                                                 </setBody>
567                                         </doFinally>
568                                 </doTry>
569                         </route>
570                 </get>
571
572                 <get uri="/v2/dictionary"
573                         outType="org.onap.clamp.tosca.Dictionary" produces="application/json">
574                         <route>
575                                 <removeHeaders pattern="*" />
576                                 <doTry>
577                                         <to
578                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET ALL Dictionaries')" />
579                                         <to
580                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','read')" />
581                                         <to
582                                                 uri="bean:org.onap.clamp.tosca.DictionaryService?method=getAllDictionaries()" />
583                                         <to
584                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
585                                         <doCatch>
586                                                 <exception>java.lang.Exception</exception>
587                                                 <handled>
588                                                         <constant>false</constant>
589                                                 </handled>
590                                                 <to
591                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
592                                         </doCatch>
593                                 </doTry>
594                         </route>
595                 </get>
596
597                 <get uri="/v2/dictionary/secondary/names"
598                         outType="java.lang.String[]" produces="application/json">
599                         <route>
600                                 <removeHeaders pattern="*" />
601                                 <doTry>
602                                         <to
603                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET ALL Secondary Dictionary Level Names')" />
604                                         <to
605                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','read')" />
606                                         <to
607                                                 uri="bean:org.onap.clamp.tosca.DictionaryService?method=getAllSecondaryLevelDictionaryNames()" />
608                                         <to
609                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
610                                         <doCatch>
611                                                 <exception>java.lang.Exception</exception>
612                                                 <handled>
613                                                         <constant>false</constant>
614                                                 </handled>
615                                                 <to
616                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
617                                         </doCatch>
618                                 </doTry>
619                         </route>
620                 </get>
621                 <get uri="/v2/dictionary/{dictionaryName}"
622                         outType="org.onap.clamp.tosca.Dictionary" produces="application/json">
623                         <route>
624                                 <removeHeaders pattern="*"
625                                         excludePattern="dictionaryName" />
626                                 <doTry>
627                                         <to
628                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET ALL Dictionary Elements for a Dictionary Name')" />
629                                         <to
630                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','read')" />
631                                         <to
632                                                 uri="bean:org.onap.clamp.tosca.DictionaryService?method=getDictionary(${header.dictionaryName})" />
633                                         <to
634                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
635                                         <doCatch>
636                                                 <exception>java.lang.Exception</exception>
637                                                 <handled>
638                                                         <constant>false</constant>
639                                                 </handled>
640                                                 <to
641                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
642                                         </doCatch>
643                                 </doTry>
644                         </route>
645                 </get>
646                 <put uri="/v2/dictionary" type="org.onap.clamp.tosca.Dictionary"
647                         outType="org.onap.clamp.tosca.Dictionary" consumes="application/json"
648                         produces="application/json">
649                         <route>
650                                 <doTry>
651                                         <to
652                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Add New or Update Dictionary')" />
653                                         <to
654                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','update')" />
655                                         <setProperty propertyName="DictionaryObject">
656                                                 <simple>${body}</simple>
657                                         </setProperty>
658                                         <to
659                                                 uri="bean:org.onap.clamp.tosca.DictionaryService?method=saveOrUpdateDictionary(${exchangeProperty[DictionaryObject]})" />
660                                         <to
661                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
662                                         <doCatch>
663                                                 <exception>java.lang.Exception</exception>
664                                                 <handled>
665                                                         <constant>false</constant>
666                                                 </handled>
667                                                 <to
668                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
669                                         </doCatch>
670                                 </doTry>
671                         </route>
672                 </put>
673
674                 <put uri="/v2/dictionary/{name}"
675                         type="org.onap.clamp.tosca.Dictionary"
676                         outType="org.onap.clamp.tosca.Dictionary" consumes="application/json"
677                         produces="application/json">
678                         <route>
679                                 <removeHeaders pattern="*" excludePattern="name" />
680                                 <doTry>
681                                         <to
682                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Add New or Update Dictionary Element')" />
683                                         <to
684                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','update')" />
685                                         <setProperty propertyName="DictionaryObject">
686                                                 <simple>${body}</simple>
687                                         </setProperty>
688                                         <to
689                                                 uri="bean:org.onap.clamp.tosca.DictionaryService?method=saveOrUpdateDictionaryElement(${header.name}, ${exchangeProperty[DictionaryObject]})" />
690                                         <to
691                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
692                                         <doCatch>
693                                                 <exception>java.lang.Exception</exception>
694                                                 <handled>
695                                                         <constant>false</constant>
696                                                 </handled>
697                                                 <to
698                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
699                                         </doCatch>
700                                 </doTry>
701                         </route>
702                 </put>
703
704                 <delete uri="/v2/dictionary/{name}" produces="application/json">
705                         <route>
706                                 <removeHeaders pattern="*" excludePattern="name" />
707                                 <doTry>
708                                         <to
709                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Delete Dictionary')" />
710                                         <to
711                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','update')" />
712                                         <to
713                                                 uri="bean:org.onap.clamp.tosca.DictionaryService?method=deleteDictionary(${header.name})" />
714                                         <to
715                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
716                                         <doCatch>
717                                                 <exception>java.lang.Exception</exception>
718                                                 <handled>
719                                                         <constant>false</constant>
720                                                 </handled>
721                                                 <to
722                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
723                                         </doCatch>
724                                 </doTry>
725                         </route>
726                 </delete>
727
728                 <delete uri="/v2/dictionary/{name}/elements/{shortName}"
729                         produces="application/json">
730                         <route>
731                                 <removeHeaders pattern="*"
732                                         excludePattern="name|shortName" />
733                                 <doTry>
734                                         <to
735                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Delete Dictionary Element')" />
736                                         <to
737                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','update')" />
738                                         <to
739                                                 uri="bean:org.onap.clamp.tosca.DictionaryService?method=deleteDictionaryElement(${header.name}, ${header.shortName})" />
740                                         <to
741                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
742                                         <doCatch>
743                                                 <exception>java.lang.Exception</exception>
744                                                 <handled>
745                                                         <constant>false</constant>
746                                                 </handled>
747                                                 <to
748                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
749                                         </doCatch>
750                                 </doTry>
751                         </route>
752                 </delete>
753
754                 <get uri="/v2/policyToscaModels"
755                         outType="org.onap.clamp.loop.template.PolicyModel"
756                         produces="application/json">
757                         <route>
758                                 <removeHeaders pattern="*" />
759                                 <doTry>
760                                         <to
761                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET ALL Tosca Policy Models')" />
762                                         <to
763                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','read')" />
764                                         <to
765                                                 uri="bean:org.onap.clamp.loop.template.PolicyModelsService?method=getAllPolicyModels()" />
766                                         <to
767                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
768                                         <doCatch>
769                                                 <exception>java.lang.Exception</exception>
770                                                 <handled>
771                                                         <constant>true</constant>
772                                                 </handled>
773                                                 <setHeader headerName="CamelHttpResponseCode">
774                                                         <constant>500</constant>
775                                                 </setHeader>
776                                                 <transform>
777                                                         <simple>ERROR: ${exception.message}</simple>
778                                                 </transform>
779                                                 <to
780                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
781                                         </doCatch>
782                                 </doTry>
783                         </route>
784                 </get>
785                 <get uri="/v2/policyToscaModels/{policyModelType}"
786                         outType="org.onap.clamp.loop.template.PolicyModel"
787                         produces="application/json">
788                         <route>
789                                 <removeHeaders pattern="*"
790                                         excludePattern="policyModelType" />
791                                 <doTry>
792                                         <to
793                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET Tosca Policy Model by Name')" />
794                                         <to
795                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','read')" />
796                                         <to
797                                                 uri="bean:org.onap.clamp.loop.template.PolicyModelsService?method=getPolicyModelByType(${header.policyModelType})" />
798                                         <to
799                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
800                                         <doCatch>
801                                                 <exception>java.lang.Exception</exception>
802                                                 <handled>
803                                                         <constant>true</constant>
804                                                 </handled>
805                                                 <setHeader headerName="CamelHttpResponseCode">
806                                                         <constant>500</constant>
807                                                 </setHeader>
808                                                 <transform>
809                                                         <simple>ERROR: ${exception.message}</simple>
810                                                 </transform>
811                                                 <to
812                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
813                                         </doCatch>
814                                 </doTry>
815                         </route>
816                 </get>
817                 <get uri="/v2/policyToscaModels/yaml/{policyModelType}"
818                         outType="java.lang.String" produces="application/json">
819                         <route>
820                                 <removeHeaders pattern="*"
821                                         excludePattern="policyModelType" />
822                                 <doTry>
823                                         <to
824                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET Tosca Policy Model Yaml String by Name')" />
825                                         <to
826                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','read')" />
827                                         <to
828                                                 uri="bean:org.onap.clamp.loop.template.PolicyModelsService?method=getPolicyModelTosca(${header.policyModelType})" />
829                                         <to
830                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
831                                         <doCatch>
832                                                 <exception>java.lang.Exception</exception>
833                                                 <handled>
834                                                         <constant>true</constant>
835                                                 </handled>
836                                                 <setHeader headerName="CamelHttpResponseCode">
837                                                         <constant>500</constant>
838                                                 </setHeader>
839                                                 <transform>
840                                                         <simple>ERROR: ${exception.message}</simple>
841                                                 </transform>
842                                                 <to
843                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
844                                         </doCatch>
845                                 </doTry>
846                         </route>
847                 </get>
848
849                 <put uri="/v2/policyToscaModels/{policyModelType}"
850                         type="java.lang.String"
851                         outType="org.onap.clamp.loop.template.PolicyModel"
852                         consumes="plain/text" produces="application/json">
853                         <route>
854                                 <removeHeaders pattern="*"
855                                         excludePattern="policyModelType" />
856                                 <doTry>
857                                         <to
858                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Upload New or Update Tosca Policy Model')" />
859                                         <to
860                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','update')" />
861                                         <setProperty propertyName="PolicyModelObject">
862                                                 <simple>${body}</simple>
863                                         </setProperty>
864                                         <to
865                                                 uri="bean:org.onap.clamp.loop.template.PolicyModelsService?method=saveOrUpdateByPolicyModelType(${header.policyModelType},${exchangeProperty[PolicyModelObject]})" />
866                                         <to
867                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
868                                         <doCatch>
869                                                 <exception>java.lang.Exception</exception>
870                                                 <handled>
871                                                         <constant>true</constant>
872                                                 </handled>
873                                                 <setHeader headerName="CamelHttpResponseCode">
874                                                         <constant>404</constant>
875                                                 </setHeader>
876                                                 <transform>
877                                                         <simple>ERROR: ${exception.message}</simple>
878                                                 </transform>
879                                                 <to
880                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
881                                         </doCatch>
882                                 </doTry>
883                         </route>
884                 </put>
885
886
887                 <get uri="/v2/templates"
888                         outType="org.onap.clamp.loop.template.LoopTemplate"
889                         produces="application/json">
890                         <route>
891                                 <removeHeaders pattern="*" />
892                                 <doTry>
893                                         <to
894                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET ALL Templates')" />
895                                         <to
896                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'template','','read')" />
897                                         <to
898                                                 uri="bean:org.onap.clamp.loop.template.LoopTemplatesService?method=getAllLoopTemplates()" />
899                                         <to
900                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
901                                         <doCatch>
902                                                 <exception>java.lang.Exception</exception>
903                                                 <handled>
904                                                         <constant>true</constant>
905                                                 </handled>
906                                                 <setHeader headerName="CamelHttpResponseCode">
907                                                         <constant>500</constant>
908                                                 </setHeader>
909                                                 <transform>
910                                                         <simple>ERROR: ${exception.message}</simple>
911                                                 </transform>
912                                                 <to
913                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
914                                         </doCatch>
915                                 </doTry>
916                         </route>
917                 </get>
918                 <get uri="/v2/templates/{templateName}"
919                         outType="org.onap.clamp.loop.template.LoopTemplate"
920                         produces="application/json">
921                         <route>
922                                 <removeHeaders pattern="*"
923                                         excludePattern="templateName" />
924                                 <doTry>
925                                         <to
926                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET a Template by NAME')" />
927                                         <to
928                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'template','','read')" />
929                                         <to
930                                                 uri="bean:org.onap.clamp.loop.template.LoopTemplatesService?method=getLoopTemplate(${header.templateName})" />
931                                         <to
932                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
933                                         <doCatch>
934                                                 <exception>java.lang.Exception</exception>
935                                                 <handled>
936                                                         <constant>true</constant>
937                                                 </handled>
938                                                 <setHeader headerName="CamelHttpResponseCode">
939                                                         <constant>500</constant>
940                                                 </setHeader>
941                                                 <transform>
942                                                         <simple>ERROR: ${exception.message}</simple>
943                                                 </transform>
944                                                 <to
945                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
946                                         </doCatch>
947                                 </doTry>
948                         </route>
949                 </get>
950                 <get uri="/v2/templates/names" outType="java.lang.String[]"
951                         produces="application/json">
952                         <route>
953                                 <removeHeaders pattern="*" />
954                                 <doTry>
955                                         <to
956                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET ALL Loop Template Names')" />
957                                         <to
958                                                 uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'template','','read')" />
959                                         <to
960                                                 uri="bean:org.onap.clamp.loop.template.LoopTemplatesService?method=getLoopTemplateNames()" />
961                                         <to
962                                                 uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
963                                         <doCatch>
964                                                 <exception>java.lang.Exception</exception>
965                                                 <handled>
966                                                         <constant>false</constant>
967                                                 </handled>
968                                                 <to
969                                                         uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
970                                         </doCatch>
971                                 </doTry>
972                         </route>
973                 </get>
974         </rest>
975 </rests>