summaryrefslogtreecommitdiffstats
path: root/check-blueprint-vs-input/check-blueprint-vs-input.man
blob: 017d529cd34648701663ed01c625a23879066e22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
'\" Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. 
'\"
'\" Licensed under the Apache License, Version 2.0 (the "License");
'\" you may not use this code except in compliance
'\" with the License. You may obtain a copy of the License
'\" at http://www.apache.org/licenses/LICENSE-2.0
'\" 
'\" Unless required by applicable law or agreed to in writing, software 
'\" distributed under the License is distributed on an "AS IS" BASIS, 
'\" WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 
'\" implied. See the License for the specific language governing 
'\" permissions and limitations under the License.
.TH check-blueprint-vs-input 1UTIL {{DATE}} ONAP ONAP
.SH NAME
check-blueprint-vs-input
.SH SYNOPSIS
check-blueprint-vs-input [-h] [-b BLUEPRINT] [-i INPUTS]
                                [-B BLUEPRINT_EXCLUSION_LIST]
                                [-I INPUTS_EXCLUSION_LIST] [-t] [-v]
.SH DESCRIPTION
Validate a blueprint and inputs file against each other. This looks for the
inputs: node of the blueprint file, the inputs used by {get_input} within the
blueprint, and the values found in the inputs file. The files may be in either
YAML or JSON formats. The names default to blueprint.yaml and inputs.yaml. If
a blueprint inputs name has a default value, it is not considered an error if
it is not in the inputs file. If using a template inputs file, add the
-t/--template option. This will look for the inputs under an "inputs:" node
instead of at the top level. If there are blueprint nodes or inputs nodes that
should not be considered an error, specify them using the -B/--blueprint-
exclusion-list and -I/inputs-exclusion-list parameters. "check-blueprint-vs-
input --help" will list all of the available options.
.SS OPTIONS
.HP 20
-h, --help
show this help message and exit
.HP 20
-b BLUEPRINT, --blueprint BLUEPRINT
Path to blueprint file, defaults to 'blueprint.yaml'
.HP 20
-i INPUTS, --inputs INPUTS
Port to listen on, defaults to 'inputs.yaml'
.HP 20
-B BLUEPRINT_EXCLUSION_LIST, --blueprint-exclusion-list BLUEPRINT_EXCLUSION_LIST
Comma-separated list of names not to warn about not
                        being in the blueprint file
.HP 20
-I INPUTS_EXCLUSION_LIST, --inputs-exclusion-list INPUTS_EXCLUSION_LIST
Comma-separated list of names not to warn about not
                        being in the inputs file
.HP 20
-t, --inputs-template
Treat inputs file as coming from template area
.HP 20
-v, --verbose
Verbose, may be specified multiple times
ef='#n445'>445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172
<rests xmlns="http://camel.apache.org/schema/spring">
	<rest>
		<get uri="/v2/loop/getAllNames" outType="java.lang.String[]"
			produces="application/json">
			<route>
				<removeHeaders pattern="*" />
				<doTry>
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET ALL Loop')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','read')" />
					<to
						uri="bean:org.onap.clamp.loop.LoopController?method=getLoopNames()" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</get>
		<get uri="/v2/loop/{loopName}" outType="org.onap.clamp.loop.Loop"
			produces="application/json">
			<route>
				<removeHeaders pattern="*" excludePattern="loopName" />
				<doTry>
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET Loop')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','read')" />
					<to
						uri="bean:org.onap.clamp.loop.LoopController?method=getLoop(${header.loopName})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</get>
		<get uri="/v2/loop/svgRepresentation/{loopName}"
			outType="java.lang.String" produces="application/xml">
			<route>
				<removeHeaders pattern="*" excludePattern="loopName" />
				<doTry>
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Get SVG Representation')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','read')" />
					<to
						uri="bean:org.onap.clamp.loop.LoopController?method=getSvgRepresentation(${header.loopName})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</get>

		<post uri="/v2/loop/updateGlobalProperties/{loopName}"
			type="com.google.gson.JsonObject" consumes="application/json"
			outType="org.onap.clamp.loop.Loop" produces="application/json">
			<route>
				<removeHeaders pattern="*" excludePattern="loopName" />
				<doTry>
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Update the global properties')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
					<setHeader headerName="GlobalPropertiesJson">
						<simple>${body}</simple>
					</setHeader>
					<to uri="direct:load-loop" />
					<to
						uri="bean:org.onap.clamp.loop.LoopController?method=updateGlobalPropertiesJson(${header.loopName},${header.GlobalPropertiesJson})" />
					<to
						uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('Global Properties UPDATED','INFO',${exchangeProperty[loopObject]})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</post>
		<post uri="/v2/loop/updateOperationalPolicies/{loopName}"
			type="com.google.gson.JsonArray" consumes="application/json"
			outType="org.onap.clamp.loop.Loop" produces="application/json">
			<route>
				<removeHeaders pattern="*" excludePattern="loopName" />
				<doTry>
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Update operational policies')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
					<setHeader headerName="OperationalPoliciesArray">
						<simple>${body}</simple>
					</setHeader>
					<to uri="direct:load-loop" />
					<to
						uri="bean:org.onap.clamp.loop.LoopController?method=updateOperationalPolicies(${header.loopName},${header.OperationalPoliciesArray})" />
					<to
						uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('Operational and Guard policies UPDATED','INFO',${exchangeProperty[loopObject]})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</post>
		<post uri="/v2/loop/updateMicroservicePolicy/{loopName}"
			type="org.onap.clamp.policy.microservice.MicroServicePolicy"
			consumes="application/json"
			outType="org.onap.clamp.policy.microservice.MicroServicePolicy"
			produces="application/json">
			<route>
				<removeHeaders pattern="*" excludePattern="loopName" />
				<doTry>
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Update Microservice policies')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
					<setProperty propertyName="MicroServicePolicyObject">
						<simple>${body}</simple>
					</setProperty>

					<to uri="direct:load-loop" />
					<to
						uri="bean:org.onap.clamp.loop.LoopController?method=updateMicroservicePolicy(${header.loopName},${exchangeProperty[MicroServicePolicyObject]})" />
					<to
						uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('Micro Service policies UPDATED','INFO',${exchangeProperty[loopObject]})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</post>
		<put uri="/v2/loop/deploy/{loopName}"
			outType="org.onap.clamp.loop.Loop" produces="application/json">
			<route>
				<removeHeaders pattern="*" excludePattern="loopName" />
				<doTry>
					<log loggingLevel="INFO"
						message="DCAE DEPLOY request for loop: ${header.loopName}" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'DCAE DEPLOY request')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
					<to uri="direct:load-loop" />
					<to
						uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('DCAE DEPLOY request','INFO',${exchangeProperty[loopObject]})" />

					<to uri="direct:deploy-loop" />

					<log loggingLevel="INFO"
						message="DEPLOY request successfully executed for loop: ${header.loopName}" />
					<to
						uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('DEPLOY request successfully executed','INFO',${exchangeProperty[loopObject]})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
						<log loggingLevel="ERROR"
							message="DEPLOY request failed for loop: ${header.loopName}" />
						<to
							uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('DEPLOY request failed, Error reported: ${exception} - Body: ${exception.responseBody}','ERROR',${exchangeProperty[loopObject]})" />
					</doCatch>
				</doTry>
			</route>
		</put>
		<put uri="/v2/loop/refreshMicroServicePolicyJsonSchema/{loopName}/{microServicePolicyName}"
			 outType="org.onap.clamp.loop.Loop" produces="application/json">
			<route>
				<removeHeaders pattern="*" excludePattern="loopName|microServicePolicyName" />
				<doTry>
					<log loggingLevel="INFO"
						 message="Refresh Micro Service Policy UI for loop: ${header.loopName} and ${header.microServicePolicyName}" />
					<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'REFRESH Micro Service Policy UI request')" />
					<to
							uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
					<to uri="direct:load-loop" />
					<to
							uri="bean:org.onap.clamp.loop.LoopController?method=refreshMicroServicePolicyJsonRepresentation(${exchangeProperty[loopObject]},${header.microServicePolicyName}})" />
					<log loggingLevel="INFO"
						 message="REFRESH Micro Service policy request successfully executed for loop: ${header.loopName}" />
					<to
							uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('REFRESH Micro Service policy request successfully executed','INFO',${exchangeProperty[loopObject]})" />
					<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
								uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
						<log loggingLevel="ERROR"
							 message="REFRESH Micro Service policy request failed for loop: ${header.loopName}" />
						<to
								uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('REFRESH Micro Service policy request failed, Error reported: ${exception} - Body: ${exception.responseBody}','ERROR',${exchangeProperty[loopObject]})" />
					</doCatch>
				</doTry>
			</route>
		</put>
		<put uri="/v2/loop/refreshOperationalPolicyJsonSchema/{loopName}/{operationalPolicyName}"
			outType="org.onap.clamp.loop.Loop" produces="application/json">
			<route>
				<removeHeaders pattern="*" excludePattern="loopName|operationalPolicyName" />
				<doTry>
					<log loggingLevel="INFO"
						message="Refresh Operational Policy UI for loop: ${header.loopName} and ${header.operationalPolicyName}" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'REFRESH Operational Policy UI request')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
					<to uri="direct:load-loop" />
					<to
						uri="bean:org.onap.clamp.loop.LoopController?method=refreshOperationalPolicyJsonRepresentation(${exchangeProperty[loopObject]},${header.operationalPolicyName}})" />
					<log loggingLevel="INFO"
						message="REFRESH operational policy request successfully executed for loop: ${header.loopName}" />
					<to
						uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('REFRESH operational policy request successfully executed','INFO',${exchangeProperty[loopObject]})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
						<log loggingLevel="ERROR"
							message="REFRESH operational policy request failed for loop: ${header.loopName}" />
						<to
							uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('REFRESH operational policy request failed, Error reported: ${exception} - Body: ${exception.responseBody}','ERROR',${exchangeProperty[loopObject]})" />
					</doCatch>
				</doTry>
			</route>
		</put>
		<put uri="/v2/loop/undeploy/{loopName}"
			outType="org.onap.clamp.loop.Loop" produces="application/json">
			<route>
				<removeHeaders pattern="*" excludePattern="loopName" />
				<doTry>
					<log loggingLevel="INFO"
						message="DCAE UNDEPLOY request for loop: ${header.loopName}" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'DCAE UNDEPLOY request')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
					<to uri="direct:load-loop" />
					<to
						uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('DCAE UNDEPLOY request','INFO',${exchangeProperty[loopObject]})" />
					<to uri="direct:undeploy-loop" />

					<log loggingLevel="INFO"
						message="UNDEPLOY request successfully executed for loop: ${header.loopName}" />
					<to
						uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('UNDEPLOY request successfully executed','INFO',${exchangeProperty[loopObject]})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
						<log loggingLevel="ERROR"
							message="UNDEPLOY request failed for loop: ${header.loopName}" />
						<to
							uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('UNDEPLOY request failed, Error reported: ${exception} - Body: ${exception.responseBody}','ERROR',${exchangeProperty[loopObject]})" />
					</doCatch>
				</doTry>
			</route>
		</put>
		<put uri="/v2/loop/stop/{loopName}"
			outType="org.onap.clamp.loop.Loop" produces="application/json">
			<route>
				<removeHeaders pattern="*" excludePattern="loopName" />
				<doTry>
					<log loggingLevel="INFO"
						message="STOP request for loop: ${header.loopName}" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*,'STOP request')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
					<to uri="direct:load-loop" />
					<to
						uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('STOP request','INFO',${exchangeProperty[loopObject]})" />

					<to uri="direct:remove-all-policy-from-active-pdp-group" />
					<log loggingLevel="INFO"
						message="STOP request successfully executed for loop: ${header.loopName}" />
					<to
						uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('STOP request successfully executed','INFO',${exchangeProperty[loopObject]})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
						<log loggingLevel="ERROR"
							message="STOP request failed for loop: $${header.loopName}" />
						<to
							uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('STOP request failed, Error reported: ${exception} - Body: ${exception.responseBody}','ERROR',${exchangeProperty[loopObject]})" />
					</doCatch>
				</doTry>
			</route>
		</put>
		<put uri="/v2/loop/restart/{loopName}"
			outType="org.onap.clamp.loop.Loop" produces="application/json">
			<route>
				<removeHeaders pattern="*" excludePattern="loopName" />
				<doTry>
					<log loggingLevel="INFO"
						message="RESTART request for loop: ${header.loopName}" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*,'RESTART request')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
					<to uri="direct:load-loop" />

					<to
						uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('RESTART request','INFO',${exchangeProperty[loopObject]})" />

					<to uri="direct:add-all-to-active-pdp-group" />
					<log loggingLevel="INFO"
						message="RESTART request successfully executed for loop: ${header.loopName}" />
					<to
						uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('RESTART request successfully executed','INFO',${exchangeProperty[loopObject]})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
						<log loggingLevel="ERROR"
							message="RESTART request failed for loop: ${header.loopName}" />
						<to
							uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('RESTART request failed, Error reported: ${exception} - Body: ${exception.responseBody}','INFO',${exchangeProperty[loopObject]})" />
					</doCatch>
				</doTry>
			</route>
		</put>
		<put uri="/v2/loop/submit/{loopName}"
			outType="org.onap.clamp.loop.Loop" produces="application/json">
			<route>
				<removeHeaders pattern="*" excludePattern="loopName" />
				<doTry>
					<log loggingLevel="INFO"
						message="POLICY SUBMIT request for loop: ${header.loopName}" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'POLICY SUBMIT request')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
					<to uri="direct:load-loop" />
					<to
						uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('POLICY SUBMIT request','INFO',${exchangeProperty[loopObject]})" />
					<setProperty propertyName="raiseHttpExceptionFlag">
						<simple resultType="java.lang.Boolean">false</simple>
					</setProperty>
					<to uri="direct:remove-all-policy-from-active-pdp-group" />
					<log loggingLevel="INFO"
						message="Processing all MICRO-SERVICES policies defined in loop ${exchangeProperty[loopObject].getName()}" />
					<split>
						<simple>${exchangeProperty[loopObject].getMicroServicePolicies()}
						</simple>
						<setProperty propertyName="policy">
							<simple>${body}</simple>
						</setProperty>
						<log loggingLevel="INFO"
							message="Processing Micro Service Policy: ${exchangeProperty[policy].getName()}" />
						<setProperty propertyName="raiseHttpExceptionFlag">
							<simple resultType="java.lang.Boolean">false</simple>
						</setProperty>
						<to uri="direct:delete-policy" />
						<to uri="direct:create-policy" />
					</split>
					<log loggingLevel="INFO"
						message="Processing all OPERATIONAL policies defined in loop ${exchangeProperty[loopObject].getName()}" />
					<split>
						<simple>${exchangeProperty[loopObject].getOperationalPolicies()}
						</simple>
						<setProperty propertyName="policy">
							<simple>${body}</simple>
						</setProperty>
						<log loggingLevel="INFO"
							message="Processing Operational Policy: ${exchangeProperty[policy].getName()}" />
						<setProperty propertyName="raiseHttpExceptionFlag">
							<simple resultType="java.lang.Boolean">false</simple>
						</setProperty>

						<to uri="direct:delete-policy" />
						<to uri="direct:create-policy" />
						<choice>
							<when>
								<simple>${exchangeProperty['policy'].isLegacy()} == true
								</simple>
								<log loggingLevel="INFO"
									message="Processing all GUARD policies (LEGACY) defined in loop ${exchangeProperty[loopObject].getName()}" />
								<split>
									<simple>${exchangeProperty[operationalPolicy].createGuardPolicyPayloads().entrySet()}
									</simple>
									<setProperty propertyName="guardPolicy">
										<simple>${body}</simple>
									</setProperty>
									<log loggingLevel="INFO"
										message="Processing Guard Policy: ${exchangeProperty[guardPolicy].getKey()}" />

									<setProperty propertyName="raiseHttpExceptionFlag">
										<simple resultType="java.lang.Boolean">false</simple>
									</setProperty>
									<to uri="direct:delete-guard-policy" />
									<to uri="direct:create-guard-policy" />
								</split>
							</when>
						</choice>
					</split>

					<delay>
						<constant>3000</constant>
					</delay>

					<to uri="direct:add-all-to-active-pdp-group" />

					<log loggingLevel="INFO"
						message="SUBMIT request successfully executed for loop: ${header.loopName}" />
					<to
						uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('SUBMIT request successfully executed','INFO',${exchangeProperty[loopObject]})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
						<log loggingLevel="ERROR"
							message="SUBMIT request failed for loop: ${header.loopName}" />
						<to
							uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('SUBMIT request failed, Error reported: ${exception} - Body: ${exception.responseBody}','ERROR',${exchangeProperty[loopObject]})" />
					</doCatch>
				</doTry>
			</route>
		</put>
		<put uri="/v2/loop/delete/{loopName}">
			<route>
				<removeHeaders pattern="*" excludePattern="loopName" />
				<doTry>
					<log loggingLevel="INFO"
						message="DELETE request for loop: ${header.loopName}" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*,'DELETE request')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
					<to uri="direct:load-loop" />
					<to
						uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('DELETE request','INFO',${exchangeProperty[loopObject]})" />
					<to uri="direct:undeploy-loop" />
					<to uri="direct:remove-all-policy-from-active-pdp-group" />
					<split>
						<simple>${exchangeProperty[loopObject].getMicroServicePolicies()}
						</simple>
						<setProperty propertyName="microServicePolicy">
							<simple>${body}</simple>
						</setProperty>
						<log loggingLevel="INFO"
							message="Processing Micro Service Policy: ${exchangeProperty[microServicePolicy].getName()}" />
						<to uri="direct:delete-micro-service-policy" />
					</split>

					<log loggingLevel="INFO"
						message="Processing all OPERATIONAL policies defined in loop ${exchangeProperty[loopObject].getName()}" />
					<split>
						<simple>${exchangeProperty[loopObject].getOperationalPolicies()}
						</simple>
						<setProperty propertyName="operationalPolicy">
							<simple>${body}</simple>
						</setProperty>
						<log loggingLevel="INFO"
							message="Processing Operational Policy: ${exchangeProperty[operationalPolicy].getName()}" />
						<to uri="direct:delete-operational-policy" />
						<log loggingLevel="INFO"
							message="Processing all GUARD policies defined in loop ${exchangeProperty[loopObject].getName()}" />
						<split>
							<simple>${exchangeProperty[operationalPolicy].createGuardPolicyPayloads().entrySet()}
							</simple>
							<setProperty propertyName="guardPolicy">
								<simple>${body}</simple>
							</setProperty>
							<log loggingLevel="INFO"
								message="Processing Guard Policy: ${exchangeProperty[guardPolicy].getKey()}" />
							<to uri="direct:delete-guard-policy" />
						</split>
					</split>
					<to
						uri="bean:org.onap.clamp.loop.log.LoopController?method=deleteLoop(${header.loopName})" />
					<log loggingLevel="INFO"
						message="DELETE request successfully executed for loop: ${header.loopName}" />
					<to
						uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('DELETE request successfully executed','INFO',${exchangeProperty[loopObject]})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
						<log loggingLevel="ERROR"
							message="DELETE request failed for loop: ${header.loopName}" />
						<to
							uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('DELETE request failed, Error reported: ${exception} - Body: ${exception.responseBody}','ERROR',${exchangeProperty[loopObject]})" />
					</doCatch>
				</doTry>
			</route>
		</put>
		<get uri="/v2/loop/getstatus/{loopName}"
			outType="org.onap.clamp.loop.Loop" produces="application/json">
			<route>
				<removeHeaders pattern="*" excludePattern="loopName" />
				<doTry>
					<log loggingLevel="INFO"
						message="GET STATUS request for loop: ${header.loopName}" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET STATUS request')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','read')" />
					<to uri="direct:load-loop" />
					<to
						uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('GET STATUS request','INFO',${exchangeProperty[loopObject]})" />
					<doTry>
						<to uri="direct:update-policy-status-for-loop" />
						<to uri="direct:update-dcae-status-for-loop" />
						<to uri="direct:update-loop-state" />

						<to
							uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('Get Status request successfully executed','INFO',${exchangeProperty[loopObject]})" />
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					</doTry>
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
						<log loggingLevel="ERROR"
							message="Get Status request failed for loop: ${header.loopName}" />
						<to
							uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('Get Status request failed, Error reported: ${exception} - Body: ${exception.responseBody}','ERROR',${exchangeProperty[loopObject]})" />
					</doCatch>
					<doFinally>
						<setBody>
							<simple>${exchangeProperty[loopObject]}</simple>
						</setBody>
					</doFinally>
				</doTry>
			</route>
		</get>

		<put uri="/v2/loop/addOperationaPolicy/{loopName}/policyModel/{policyType}/{policyVersion}" outType="org.onap.clamp.loop.Loop" produces="application/json">
			<route>
				<removeHeaders pattern="*" excludePattern="loopName|policyType|policyVersion" />
				<doTry>
					<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Add operational Policy')" />
					<to
							uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
					<to uri="direct:load-loop" />
					<to
							uri="bean:org.onap.clamp.loop.LoopController?method=addOperationalPolicy(${header.loopName},${header.policyType},${header.policyVersion})" />
					<to
							uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('ADD OperationalPolicy request successfully executed','INFO',${exchangeProperty[loopObject]})" />
					<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
								uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
						<log loggingLevel="ERROR"
							 message="ADD OperationalPolicy request failed for loop: ${header.loopName}" />
						<to
								uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('ADD OperationalPolicy request failed','ERROR',${exchangeProperty[loopObject]})" />
					</doCatch>
				</doTry>
			</route>
		</put>
		<put uri="/v2/loop/removeOperationaPolicy/{loopName}/policyModel/{policyType}/{policyVersion}" outType="org.onap.clamp.loop.Loop" produces="application/json">
			<route>
				<removeHeaders pattern="*" excludePattern="loopName|policyType|policyVersion" />
				<doTry>
					<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'REMOVE operational Policy')" />
					<to
							uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
					<to uri="direct:load-loop" />
					<to
							uri="bean:org.onap.clamp.loop.LoopController?method=removeOperationalPolicy(${header.loopName},${header.policyType},${header.policyVersion})" />
					<to
							uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('REMOVE OperationalPolicy request successfully executed','INFO',${exchangeProperty[loopObject]})" />
					<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
								uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
						<log loggingLevel="ERROR"
							 message="REMOVE OperationalPolicy request failed for loop: ${header.loopName}" />
						<to
								uri="bean:org.onap.clamp.loop.log.LoopLogService?method=addLog('REMOVE OperationalPolicy request failed','ERROR',${exchangeProperty[loopObject]})" />
					</doCatch>
				</doTry>
			</route>
		</put>
		<post
				uri="/v2/loop/create/{loopName}?templateName={templateName}"
				outType="org.onap.clamp.loop.Loop" consumes="application/json"
				produces="application/json">
			<route>
				<removeHeaders
						pattern="*"
						excludePattern="loopName|templateName" />
				<doTry>
					<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Create Loop')" />
					<to
							uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'cl','','update')" />
					<to
							uri="bean:org.onap.clamp.loop.LoopController?method=createLoop(${header.loopName}, ${header.templateName})" />
					<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>true</constant>
						</handled>
						<setHeader headerName="CamelHttpResponseCode">
							<constant>500</constant>
						</setHeader>
						<transform>
							<simple>ERROR: ${exception.message}</simple>
					</transform>
						<to
								uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</post>
		<get uri="/v2/dictionary"
			outType="org.onap.clamp.tosca.Dictionary" produces="application/json">
			<route>
				<removeHeaders pattern="*" />
				<doTry>
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET ALL Dictionaries')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','read')" />
					<to
						uri="bean:org.onap.clamp.tosca.DictionaryService?method=getAllDictionaries()" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</get>

		<get uri="/v2/dictionary/secondary/names"
			outType="java.lang.String[]" produces="application/json">
			<route>
				<removeHeaders pattern="*" />
				<doTry>
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET ALL Secondary Dictionary Level Names')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','read')" />
					<to
						uri="bean:org.onap.clamp.tosca.DictionaryService?method=getAllSecondaryLevelDictionaryNames()" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</get>
		<get uri="/v2/dictionary/{dictionaryName}"
			outType="org.onap.clamp.tosca.Dictionary" produces="application/json">
			<route>
				<removeHeaders pattern="*"
					excludePattern="dictionaryName" />
				<doTry>
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET ALL Dictionary Elements for a Dictionary Name')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','read')" />
					<to
						uri="bean:org.onap.clamp.tosca.DictionaryService?method=getDictionary(${header.dictionaryName})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</get>
		<put uri="/v2/dictionary" type="org.onap.clamp.tosca.Dictionary"
			outType="org.onap.clamp.tosca.Dictionary" consumes="application/json"
			produces="application/json">
			<route>
				<doTry>
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Add New or Update Dictionary')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','update')" />
					<setProperty propertyName="DictionaryObject">
						<simple>${body}</simple>
					</setProperty>
					<to
						uri="bean:org.onap.clamp.tosca.DictionaryService?method=saveOrUpdateDictionary(${exchangeProperty[DictionaryObject]})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</put>

		<put uri="/v2/dictionary/{name}"
			type="org.onap.clamp.tosca.Dictionary"
			outType="org.onap.clamp.tosca.Dictionary" consumes="application/json"
			produces="application/json">
			<route>
				<removeHeaders pattern="*" excludePattern="name" />
				<doTry>
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Add New or Update Dictionary Element')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','update')" />
					<setProperty propertyName="DictionaryObject">
						<simple>${body}</simple>
					</setProperty>
					<to
						uri="bean:org.onap.clamp.tosca.DictionaryService?method=saveOrUpdateDictionaryElement(${header.name}, ${exchangeProperty[DictionaryObject]})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</put>

		<delete uri="/v2/dictionary/{name}" produces="application/json">
			<route>
				<removeHeaders pattern="*" excludePattern="name" />
				<doTry>
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Delete Dictionary')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','update')" />
					<to
						uri="bean:org.onap.clamp.tosca.DictionaryService?method=deleteDictionary(${header.name})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</delete>

		<delete uri="/v2/dictionary/{name}/elements/{shortName}"
			produces="application/json">
			<route>
				<removeHeaders pattern="*"
					excludePattern="name|shortName" />
				<doTry>
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Delete Dictionary Element')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','update')" />
					<to
						uri="bean:org.onap.clamp.tosca.DictionaryService?method=deleteDictionaryElement(${header.name}, ${header.shortName})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</delete>

		<get uri="/v2/policyToscaModels"
			outType="org.onap.clamp.loop.template.PolicyModel"
			produces="application/json">
			<route>
				<removeHeaders pattern="*" />
				<doTry>
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET ALL Tosca Policy Models')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','read')" />
					<to
						uri="bean:org.onap.clamp.loop.template.PolicyModelsService?method=getAllPolicyModels()" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>true</constant>
						</handled>
						<setHeader headerName="CamelHttpResponseCode">
							<constant>500</constant>
						</setHeader>
						<transform>
							<simple>ERROR: ${exception.message}</simple>
						</transform>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</get>
		<get uri="/v2/policyToscaModels/{policyModelType}/{policyModelVersion}"
			outType="org.onap.clamp.loop.template.PolicyModel"
			produces="application/json">
			<route>
				<removeHeaders pattern="*"
					excludePattern="policyModelType|policyModelVersion" />
				<doTry>
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET Tosca Policy Model by Name/Version')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','read')" />
					<to
						uri="bean:org.onap.clamp.loop.template.PolicyModelsService?method=getPolicyModelByType(${header.policyModelType},${header.policyModelVersion})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>true</constant>
						</handled>
						<setHeader headerName="CamelHttpResponseCode">
							<constant>500</constant>
						</setHeader>
						<transform>
							<simple>ERROR: ${exception.message}</simple>
						</transform>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</get>
		<get uri="/v2/policyToscaModels/yaml/{policyModelType}/{policyModelVersion}"
			outType="java.lang.String" produces="application/json">
			<route>
				<removeHeaders pattern="*"
					excludePattern="policyModelType|policyModelVersion" />
				<doTry>
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET Tosca Policy Model Yaml String by Name/Version')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','read')" />
					<to
						uri="bean:org.onap.clamp.loop.template.PolicyModelsService?method=getPolicyModelTosca(${header.policyModelType},${header.policyModelVersion})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>true</constant>
						</handled>
						<setHeader headerName="CamelHttpResponseCode">
							<constant>500</constant>
						</setHeader>
						<transform>
							<simple>ERROR: ${exception.message}</simple>
						</transform>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</get>

		<post uri="/v2/policyToscaModels"
			type="java.lang.String"
			outType="org.onap.clamp.loop.template.PolicyModel"
			consumes="plain/text" produces="application/json">
			<route>
				<removeHeaders pattern="*"/>
				<doTry>
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Upload New or Update Tosca Policy Model')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','update')" />
					<setProperty propertyName="PolicyModelTosca">
						<simple>${body}</simple>
					</setProperty>
					<to
						uri="bean:org.onap.clamp.loop.template.PolicyModelsService?method=createNewPolicyModelFromTosca(${exchangeProperty[PolicyModelTosca]})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>true</constant>
						</handled>
						<setHeader headerName="CamelHttpResponseCode">
							<constant>404</constant>
						</setHeader>
						<transform>
							<simple>ERROR: ${exception.message}</simple>
						</transform>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</post>
		<put uri="/v2/policyToscaModels/{policyModelType}/{policyModelVersion}"
			  type="java.lang.String"
			  outType="org.onap.clamp.loop.template.PolicyModel"
			  consumes="plain/text" produces="application/json">
			<route>
				<removeHeaders pattern="*"
							   excludePattern="policyModelType|policyModelVersion" />
				<doTry>
					<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Upload New or Update Tosca Policy Model')" />
					<to
							uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'tosca','','update')" />
					<setProperty propertyName="PolicyModelTosca">
						<simple>${body}</simple>
					</setProperty>
					<to
							uri="bean:org.onap.clamp.loop.template.PolicyModelsService?method=updatePolicyModelTosca(${header.policyModelType},${policyModelVersion},${exchangeProperty[PolicyModelTosca]})" />
					<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>true</constant>
						</handled>
						<setHeader headerName="CamelHttpResponseCode">
							<constant>404</constant>
						</setHeader>
						<transform>
							<simple>ERROR: ${exception.message}</simple>
						</transform>
						<to
								uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</put>

		<get uri="/v2/templates"
			outType="org.onap.clamp.loop.template.LoopTemplate"
			produces="application/json">
			<route>
				<removeHeaders pattern="*" />
				<doTry>
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET ALL Templates')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'template','','read')" />
					<to
						uri="bean:org.onap.clamp.loop.template.LoopTemplatesService?method=getAllLoopTemplates()" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>true</constant>
						</handled>
						<setHeader headerName="CamelHttpResponseCode">
							<constant>500</constant>
						</setHeader>
						<transform>
							<simple>ERROR: ${exception.message}</simple>
						</transform>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</get>
		<get uri="/v2/templates/{templateName}"
			outType="org.onap.clamp.loop.template.LoopTemplate"
			produces="application/json">
			<route>
				<removeHeaders pattern="*"
					excludePattern="templateName" />
				<doTry>
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET a Template by NAME')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'template','','read')" />
					<to
						uri="bean:org.onap.clamp.loop.template.LoopTemplatesService?method=getLoopTemplate(${header.templateName})" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>true</constant>
						</handled>
						<setHeader headerName="CamelHttpResponseCode">
							<constant>500</constant>
						</setHeader>
						<transform>
							<simple>ERROR: ${exception.message}</simple>
						</transform>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</get>
		<get uri="/v2/templates/names" outType="java.lang.String[]"
			produces="application/json">
			<route>
				<removeHeaders pattern="*" />
				<doTry>
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'GET ALL Loop Template Names')" />
					<to
						uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'template','','read')" />
					<to
						uri="bean:org.onap.clamp.loop.template.LoopTemplatesService?method=getLoopTemplateNames()" />
					<to
						uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</get>
		<get uri="/v2/templates/{templateName}/svgRepresentation"
			 outType="java.lang.String" produces="application/xml">
			<route>
				<removeHeaders pattern="*" excludePattern="templateName" />
				<doTry>
					<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=startLog(*, 'Get SVG Representation for Loop template')" />
					<to
							uri="bean:org.onap.clamp.authorization.AuthorizationController?method=authorize(*,'template','','read')" />
					<to
							uri="bean:org.onap.clamp.loop.template.LoopTemplatesService?method=getSvgRepresentation(${header.templateName})" />
					<to
							uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=endLog()" />
					<doCatch>
						<exception>java.lang.Exception</exception>
						<handled>
							<constant>false</constant>
						</handled>
						<to
								uri="bean:org.onap.clamp.flow.log.FlowLogOperation?method=errorLog()" />
					</doCatch>
				</doTry>
			</route>
		</get>
		<get uri="/v2/clampInformation" outType="org.onap.clamp.clds.model.ClampInformation"
			 produces="application/json">
			<to
					uri="bean:org.onap.clamp.authorization.AuthorizationController?method=getClampInformation()" />
		</get>
	</rest>
</rests>