aboutsummaryrefslogtreecommitdiffstats
path: root/ONAP-REST/src/main/java/org/onap/policy/rest/adapter/PolicyRestAdapter.java
blob: 0a3f46c78b2e1f69a7d37017b058c1eac27e3c06 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
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
/*-
 * ============LICENSE_START=======================================================
 * ONAP-PAP-REST
 * ================================================================================
 * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file 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.
 * ============LICENSE_END=========================================================
 */

package org.onap.policy.rest.adapter;

import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import javax.persistence.EntityManagerFactory;
import org.onap.policy.rest.jpa.OnapName;

public class PolicyRestAdapter {

    /*
     *
     * Note : Make Sure if any variables are added in PolicyRestAdapter.java, add them to PolicyElasticData.java file
     *
     *
     */

    // Common
    private Object data;
    private String policyName = null;
    private String configBodyData = null;
    private String configType = null;
    private String policyID = null;
    private String policyType = null;
    private String comboPolicyType;
    private String configPolicyType = null;
    private String policyDescription = null;
    private String onapName = null;
    private String configName = null;
    private String ruleID = null;
    private String parentPath;
    private boolean isValidData = false;
    private String adminNotification = null;
    private boolean isEditPolicy = false;
    private boolean isViewPolicy = false;
    private boolean isDraft = false;
    private Object policyData = null;
    private String gitPath;
    private boolean readOnly;
    private String configHome;
    private String configUrl;
    private String finalPolicyPath;
    private String version;
    private String jsonBody;
    private String uiJsonBody;
    private String apiflag;
    private String prevJsonBody;
    private Integer highestVersion;
    private EntityManagerFactory entityManagerFactory = null;
    private Boolean policyExists = false;
    private String oldPolicyFileName = null;
    private String domain = null;
    private String userId;
    private String newFileName;
    private String clWarning = null;
    private String newCLName = null;
    private String existingCLName = null;
    // Used by GUI
    private OnapName onapNameField;
    private Object jsonBodyData;
    private String dirPath;
    private String configBodyPath;
    private List<Object> attributes;
    private List<Object> settings;
    private List<Object> ruleAlgorithmschoices;

    private Map<?, ?> serviceTypePolicyName;

    private Map<?, ?> verticaMetrics;
    private Map<?, ?> description;
    private Map<?, ?> attributeFields;

    // ClosedLoop
    private String clearTimeOut;
    private String trapMaxAge;
    private String verificationclearTimeOut;
    private Map<String, String> dynamicLayoutMap;
    private ClosedLoopFaultTrapDatas trapDatas;
    private ClosedLoopFaultTrapDatas faultDatas;

    // FireWall
    private String fwPolicyType;
    private List<Object> fwattributes;
    private String parentForChild;
    private String securityZone;

    // Action & Decision
    private String ruleCombiningAlgId = null;
    private Map<String, String> dynamicFieldConfigAttributes;
    private Map<String, String> dynamicSettingsMap;
    private Map<String, String> dropDownMap;
    private String actionPerformer = null;
    private String actionAttribute = null;
    private List<String> dynamicRuleAlgorithmLabels;
    private List<String> dynamicRuleAlgorithmCombo;
    private List<String> dynamicRuleAlgorithmField1;
    private List<String> dynamicRuleAlgorithmField2;
    private List<Object> dynamicVariableList;
    private List<String> dataTypeList;
    private String actionAttributeValue;
    private String ruleProvider;
    private String actionBody = null;
    private String actionDictHeader = null;
    private String actionDictType = null;
    private String actionDictUrl = null;
    private String actionDictMethod = null;
    private YAMLParams yamlparams;
    private List<String> blackListEntries;
    private List<String> appendBlackListEntries;
    private String blackListEntryType;
    private String rawXacmlPolicy;

    // Rainy Day Decision
    private RainyDayParams rainyday;
    private Map<String, String> rainydayMap;
    private List<String> errorCodeList;
    private List<String> treatmentList;

    // MicroSerice
    private String serviceType = null;
    private String uuid = null;
    private String location = null;
    private String priority = null;
    private String msLocation = null;
    private Object policyJSON = null;

    // BRMS Policies
    private String ruleName;
    private Map<String, String> brmsParamBody = null;
    private String brmsController = null;
    private List<String> brmsDependency = null;
    private LinkedHashMap<?, ?> ruleData;
    private LinkedHashMap<?, ?> ruleListData;
    private Map<String, String> drlRuleAndUIParams = null;

    // Safe Policy
    private String policyScope;
    private String providerComboBox = null;
    private String riskType;
    private String riskLevel;
    private String guard = null;
    private String ttlDate;
    private Map<String, String> matching;

    private List<Object> triggerSignatures;
    private List<Object> symptomSignatures;
    private String logicalConnector;
    private String policyStatus;
    private String gocServerScope;
    private String supressionType;

    public List<Object> getTriggerSignatures() {
        return triggerSignatures;
    }

    public void setTriggerSignatures(List<Object> triggerSignatures) {
        this.triggerSignatures = triggerSignatures;
    }

    public List<Object> getSymptomSignatures() {
        return symptomSignatures;
    }

    public void setSymptomSignatures(List<Object> symptomSignatures) {
        this.symptomSignatures = symptomSignatures;
    }

    public String getLogicalConnector() {
        return logicalConnector;
    }

    public void setLogicalConnector(String logicalConnector) {
        this.logicalConnector = logicalConnector;
    }

    public String getPolicyStatus() {
        return policyStatus;
    }

    public void setPolicyStatus(String policyStatus) {
        this.policyStatus = policyStatus;
    }

    public String getGocServerScope() {
        return gocServerScope;
    }

    public void setGocServerScope(String gocServerScope) {
        this.gocServerScope = gocServerScope;
    }

    public String getSupressionType() {
        return supressionType;
    }

    public void setSupressionType(String supressionType) {
        this.supressionType = supressionType;
    }

    /********************************************************************************/

    public String getComboPolicyType() {
        return comboPolicyType;
    }

    public void setComboPolicyType(String comboPolicyType) {
        this.comboPolicyType = comboPolicyType;
    }

    public String getGitPath() {
        return gitPath;
    }

    public void setGitPath(String gitPath) {
        this.gitPath = gitPath;
    }

    public String getOldPolicyFileName() {
        return oldPolicyFileName;
    }

    public void setOldPolicyFileName(String oldPolicyFileName) {
        this.oldPolicyFileName = oldPolicyFileName;
    }

    public String getDomainDir() {
        return domain;
    }

    public void setDomainDir(String domain) {
        this.domain = domain;
    }

    public Integer getHighestVersion() {
        return highestVersion;
    }

    public void setHighestVersion(Integer highestVersion) {
        this.highestVersion = highestVersion;
    }

    public Object getData() {
        return data;
    }

    public void setData(Object data) {
        this.data = data;
    }

    public String getPolicyName() {
        return policyName;
    }

    public void setPolicyName(String policyName) {
        this.policyName = policyName;
    }

    public String getConfigBodyData() {
        return configBodyData;
    }

    public void setConfigBodyData(String configBodyData) {
        this.configBodyData = configBodyData;
    }

    public String getConfigType() {
        return configType;
    }

    public void setConfigType(String configType) {
        this.configType = configType;
    }

    public String getPolicyID() {
        return policyID;
    }

    public void setPolicyID(String policyID) {
        this.policyID = policyID;
    }

    public String getPolicyType() {
        return policyType;
    }

    public void setPolicyType(String policyType) {
        this.policyType = policyType;
    }

    public String getPolicyDescription() {
        return policyDescription;
    }

    public void setPolicyDescription(String policyDescription) {
        this.policyDescription = policyDescription;
    }

    public String getOnapName() {
        return onapName;
    }

    public void setOnapName(String onapName) {
        this.onapName = onapName;
    }

    public String getConfigName() {
        return configName;
    }

    public void setConfigName(String configName) {
        this.configName = configName;
    }

    public String getRuleID() {
        return ruleID;
    }

    public void setRuleID(String ruleID) {
        this.ruleID = ruleID;
    }

    public String getRuleCombiningAlgId() {
        return ruleCombiningAlgId;
    }

    public void setRuleCombiningAlgId(String ruleCombiningAlgId) {
        this.ruleCombiningAlgId = ruleCombiningAlgId;
    }

    public Map<String, String> getDynamicFieldConfigAttributes() {
        return dynamicFieldConfigAttributes;
    }

    public void setDynamicFieldConfigAttributes(Map<String, String> dynamicFieldConfigAttributes) {
        this.dynamicFieldConfigAttributes = dynamicFieldConfigAttributes;
    }

    public String getParentPath() {
        return parentPath;
    }

    public void setParentPath(String parentPath) {
        this.parentPath = parentPath;
    }

    public boolean isEditPolicy() {
        return isEditPolicy;
    }

    public void setEditPolicy(boolean isEditPolicy) {
        this.isEditPolicy = isEditPolicy;
    }

    public boolean isViewPolicy() {
        return isViewPolicy;
    }

    public void setViewPolicy(boolean isViewPolicy) {
        this.isViewPolicy = isViewPolicy;
    }

    public Object getPolicyData() {
        return policyData;
    }

    public void setPolicyData(Object policyData) {
        this.policyData = policyData;
    }

    public boolean isReadOnly() {
        return readOnly;
    }

    public void setReadOnly(boolean readOnly) {
        this.readOnly = readOnly;
    }

    public boolean isValidData() {
        return isValidData;
    }

    public void setValidData(boolean isValidData) {
        this.isValidData = isValidData;
    }

    public String getAdminNotification() {
        return adminNotification;
    }

    public void setAdminNotification(String adminNotification) {
        this.adminNotification = adminNotification;
    }

    public String getConfigHome() {
        return configHome;
    }

    public void setConfigHome(String configHome) {
        this.configHome = configHome;
    }

    public String getConfigUrl() {
        return configUrl;
    }

    public void setConfigUrl(String configUrl) {
        this.configUrl = configUrl;
    }

    public String getFinalPolicyPath() {
        return finalPolicyPath;
    }

    public void setFinalPolicyPath(String finalPolicyPath) {
        this.finalPolicyPath = finalPolicyPath;
    }

    public String getVersion() {
        return version;
    }

    public void setVersion(String version) {
        this.version = version;
    }

    public String getJsonBody() {
        return jsonBody;
    }

    public void setJsonBody(String jsonBody) {
        this.jsonBody = jsonBody;
    }

    public String getPrevJsonBody() {
        return prevJsonBody;
    }

    public void setPrevJsonBody(String prevJsonBody) {
        this.prevJsonBody = prevJsonBody;
    }

    public String getApiflag() {
        return apiflag;
    }

    public void setApiflag(String apiflag) {
        this.apiflag = apiflag;
    }

    /**
     * @return the actionPerformer
     */
    public String getActionPerformer() {
        return actionPerformer;
    }

    /**
     * @param actionPerformer the actionPerformer to set
     */
    public void setActionPerformer(String actionPerformer) {
        this.actionPerformer = actionPerformer;
    }

    /**
     * @return the actionAttribute
     */
    public String getActionAttribute() {
        return actionAttribute;
    }

    /**
     * @param actionAttribute the actionAttribute to set
     */
    public void setActionAttribute(String actionAttribute) {
        this.actionAttribute = actionAttribute;
    }

    /**
     * @return the dynamicRuleAlgorithmLabels
     */
    public List<String> getDynamicRuleAlgorithmLabels() {
        return dynamicRuleAlgorithmLabels;
    }

    /**
     * @param dynamicRuleAlgorithmLabels the dynamicRuleAlgorithmLabels to set
     */
    public void setDynamicRuleAlgorithmLabels(List<String> dynamicRuleAlgorithmLabels) {
        this.dynamicRuleAlgorithmLabels = dynamicRuleAlgorithmLabels;
    }

    /**
     * @return the dynamicRuleAlgorithmCombo
     */
    public List<String> getDynamicRuleAlgorithmCombo() {
        return dynamicRuleAlgorithmCombo;
    }

    /**
     * @param dynamicRuleAlgorithmCombo the dynamicRuleAlgorithmCombo to set
     */
    public void setDynamicRuleAlgorithmCombo(List<String> dynamicRuleAlgorithmCombo) {
        this.dynamicRuleAlgorithmCombo = dynamicRuleAlgorithmCombo;
    }

    /**
     * @return the dynamicRuleAlgorithmField1
     */
    public List<String> getDynamicRuleAlgorithmField1() {
        return dynamicRuleAlgorithmField1;
    }

    /**
     * @param dynamicRuleAlgorithmField1 the dynamicRuleAlgorithmField1 to set
     */
    public void setDynamicRuleAlgorithmField1(List<String> dynamicRuleAlgorithmField1) {
        this.dynamicRuleAlgorithmField1 = dynamicRuleAlgorithmField1;
    }

    /**
     * @return the dynamicRuleAlgorithmField2
     */
    public List<String> getDynamicRuleAlgorithmField2() {
        return dynamicRuleAlgorithmField2;
    }

    /**
     * @param dynamicRuleAlgorithmField2 the dynamicRuleAlgorithmField2 to set
     */
    public void setDynamicRuleAlgorithmField2(List<String> dynamicRuleAlgorithmField2) {
        this.dynamicRuleAlgorithmField2 = dynamicRuleAlgorithmField2;
    }

    public Map<String, String> getDropDownMap() {
        return dropDownMap;
    }

    public void setDropDownMap(Map<String, String> dropDownMap) {
        this.dropDownMap = dropDownMap;
    }

    public Map<String, String> getDynamicSettingsMap() {
        return dynamicSettingsMap;
    }

    public void setDynamicSettingsMap(Map<String, String> dynamicSettingsMap) {
        this.dynamicSettingsMap = dynamicSettingsMap;
    }

    public List<Object> getDynamicVariableList() {
        return dynamicVariableList;
    }

    public void setDynamicVariableList(List<Object> dynamicVariableList) {
        this.dynamicVariableList = dynamicVariableList;
    }

    public List<String> getDataTypeList() {
        return dataTypeList;
    }

    public void setDataTypeList(List<String> dataTypeList) {
        this.dataTypeList = dataTypeList;
    }

    public boolean isDraft() {
        return isDraft;
    }

    public void setDraft(boolean isDraft) {
        this.isDraft = isDraft;
    }

    public String getConfigPolicyType() {
        return configPolicyType;
    }

    public void setConfigPolicyType(String configPolicyType) {
        this.configPolicyType = configPolicyType;
    }

    public String getServiceType() {
        return serviceType;
    }

    public void setServiceType(String serviceType) {
        this.serviceType = serviceType;
    }

    public String getUuid() {
        return uuid;
    }

    public void setUuid(String uuid) {
        this.uuid = uuid;
    }

    public String getLocation() {
        return location;
    }

    public void setLocation(String location) {
        this.location = location;
    }

    public String getPriority() {
        return priority;
    }

    public void setPriority(String priority) {
        this.priority = priority;
    }

    public Map<String, String> getBrmsParamBody() {
        return brmsParamBody;
    }

    public void setBrmsParamBody(Map<String, String> brmsParamBody) {
        this.brmsParamBody = brmsParamBody;
    }

    public EntityManagerFactory getEntityManagerFactory() {
        return entityManagerFactory;
    }

    public void setEntityManagerFactory(EntityManagerFactory entityManagerFactory) {
        this.entityManagerFactory = entityManagerFactory;
    }

    /**
     * @return the policyExists
     */
    public Boolean getPolicyExists() {
        return policyExists;
    }

    /**
     * @param policyExists the policyExists to set
     */
    public void setPolicyExists(Boolean policyExists) {
        this.policyExists = policyExists;
    }

    public String getPolicyScope() {
        return policyScope;
    }

    public void setPolicyScope(String domainDir) {
        this.policyScope = domainDir;
    }

    public String getProviderComboBox() {
        return providerComboBox;
    }

    public void setProviderComboBox(String providerComboBox) {
        this.providerComboBox = providerComboBox;
    }

    public String getRiskType() {
        return riskType;
    }

    public void setRiskType(String riskType) {
        this.riskType = riskType;
    }

    public String getGuard() {
        return guard;
    }

    public void setGuard(String guard) {
        this.guard = guard;
    }

    public String getRiskLevel() {
        return riskLevel;
    }

    public void setRiskLevel(String riskLevel) {
        this.riskLevel = riskLevel;
    }

    public String getTtlDate() {
        return ttlDate;
    }

    public void setTtlDate(String ttlDate) {
        this.ttlDate = ttlDate;
    }

    public String getBrmsController() {
        return brmsController;
    }

    public void setBrmsController(String brmsController) {
        this.brmsController = brmsController;
    }

    public List<String> getBrmsDependency() {
        return brmsDependency;
    }

    public void setBrmsDependency(List<String> brmsDependency) {
        this.brmsDependency = brmsDependency;
    }

    public Map<String, String> getMatching() {
        return matching;
    }

    public void setMatching(Map<String, String> matching) {
        this.matching = matching;
    }

    public String getUserId() {
        return userId;
    }

    public void setUserId(String userId) {
        this.userId = userId;
    }

    public String getNewFileName() {
        return newFileName;
    }

    public void setNewFileName(String newFileName) {
        this.newFileName = newFileName;
    }

    public OnapName getOnapNameField() {
        return onapNameField;
    }

    public void setOnapNameField(OnapName onapNameField) {
        this.onapNameField = onapNameField;
    }

    public Object getJsonBodyData() {
        return jsonBodyData;
    }

    public void setJsonBodyData(Object jsonBodyData) {
        this.jsonBodyData = jsonBodyData;
    }

    public String getDirPath() {
        return dirPath;
    }

    public void setDirPath(String dirPath) {
        this.dirPath = dirPath;
    }

    public String getConfigBodyPath() {
        return configBodyPath;
    }

    public void setConfigBodyPath(String configBodyPath) {
        this.configBodyPath = configBodyPath;
    }

    public List<Object> getAttributes() {
        return attributes;
    }

    public void setAttributes(List<Object> attributes) {
        this.attributes = attributes;
    }

    public List<Object> getSettings() {
        return settings;
    }

    public void setSettings(List<Object> settings) {
        this.settings = settings;
    }

    public List<Object> getRuleAlgorithmschoices() {
        return ruleAlgorithmschoices;
    }

    public void setRuleAlgorithmschoices(List<Object> ruleAlgorithmschoices) {
        this.ruleAlgorithmschoices = ruleAlgorithmschoices;
    }

    public Map<?, ?> getServiceTypePolicyName() {
        return serviceTypePolicyName;
    }

    public void setServiceTypePolicyName(Map<?, ?> serviceTypePolicyName) {
        this.serviceTypePolicyName = serviceTypePolicyName;
    }

    public Map<?, ?> getVerticaMetrics() {
        return verticaMetrics;
    }

    public void setVerticaMetrics(Map<?, ?> verticaMetrics) {
        this.verticaMetrics = verticaMetrics;
    }

    public Map<?, ?> getDescription() {
        return description;
    }

    public void setDescription(LinkedHashMap<?, ?> description) {
        this.description = description;
    }

    public Map<?, ?> getAttributeFields() {
        return attributeFields;
    }

    public void setAttributeFields(LinkedHashMap<?, ?> attributeFields) {
        this.attributeFields = attributeFields;
    }

    public String getClearTimeOut() {
        return clearTimeOut;
    }

    public void setClearTimeOut(String clearTimeOut) {
        this.clearTimeOut = clearTimeOut;
    }

    public String getTrapMaxAge() {
        return trapMaxAge;
    }

    public void setTrapMaxAge(String trapMaxAge) {
        this.trapMaxAge = trapMaxAge;
    }

    public String getVerificationclearTimeOut() {
        return verificationclearTimeOut;
    }

    public void setVerificationclearTimeOut(String verificationclearTimeOut) {
        this.verificationclearTimeOut = verificationclearTimeOut;
    }

    public Map<String, String> getDynamicLayoutMap() {
        return dynamicLayoutMap;
    }

    public void setDynamicLayoutMap(Map<String, String> dynamicLayoutMap) {
        this.dynamicLayoutMap = dynamicLayoutMap;
    }

    public String getFwPolicyType() {
        return fwPolicyType;
    }

    public void setFwPolicyType(String fwPolicyType) {
        this.fwPolicyType = fwPolicyType;
    }

    public List<Object> getFwattributes() {
        return fwattributes;
    }

    public void setFwattributes(List<Object> fwattributes) {
        this.fwattributes = fwattributes;
    }

    public String getParentForChild() {
        return parentForChild;
    }

    public void setParentForChild(String parentForChild) {
        this.parentForChild = parentForChild;
    }

    public String getRuleName() {
        return ruleName;
    }

    public void setRuleName(String ruleName) {
        this.ruleName = ruleName;
    }

    public LinkedHashMap<?, ?> getRuleData() {
        return ruleData;
    }

    public void setRuleData(LinkedHashMap<?, ?> ruleData) {
        this.ruleData = ruleData;
    }

    public LinkedHashMap<?, ?> getRuleListData() {
        return ruleListData;
    }

    public void setRuleListData(LinkedHashMap<?, ?> ruleListData) {
        this.ruleListData = ruleListData;
    }

    public String getSecurityZone() {
        return securityZone;
    }

    public void setSecurityZone(String securityZone) {
        this.securityZone = securityZone;
    }

    public String getActionAttributeValue() {
        return actionAttributeValue;
    }

    public void setActionAttributeValue(String actionAttributeValue) {
        this.actionAttributeValue = actionAttributeValue;
    }

    public String getRuleProvider() {
        return ruleProvider;
    }

    public void setRuleProvider(String ruleProvider) {
        this.ruleProvider = ruleProvider;
    }

    public String getMsLocation() {
        return msLocation;
    }

    public void setMsLocation(String msLocation) {
        this.msLocation = msLocation;
    }

    public Map<String, String> getDrlRuleAndUIParams() {
        return drlRuleAndUIParams;
    }

    public void setDrlRuleAndUIParams(Map<String, String> drlRuleAndUIParams) {
        this.drlRuleAndUIParams = drlRuleAndUIParams;
    }

    public String getActionBody() {
        return actionBody;
    }

    public void setActionBody(String actionBody) {
        this.actionBody = actionBody;
    }

    public String getActionDictHeader() {
        return actionDictHeader;
    }

    public void setActionDictHeader(String actionDictHeader) {
        this.actionDictHeader = actionDictHeader;
    }

    public String getActionDictType() {
        return actionDictType;
    }

    public void setActionDictType(String actionDictType) {
        this.actionDictType = actionDictType;
    }

    public String getActionDictUrl() {
        return actionDictUrl;
    }

    public void setActionDictUrl(String actionDictUrl) {
        this.actionDictUrl = actionDictUrl;
    }

    public String getActionDictMethod() {
        return actionDictMethod;
    }

    public void setActionDictMethod(String actionDictMethod) {
        this.actionDictMethod = actionDictMethod;
    }

    public String getClWarning() {
        return clWarning;
    }

    public void setClWarning(String clWarning) {
        this.clWarning = clWarning;
    }

    public String getNewCLName() {
        return newCLName;
    }

    public void setNewCLName(String newCLName) {
        this.newCLName = newCLName;
    }

    public String getExistingCLName() {
        return existingCLName;
    }

    public void setExistingCLName(String existingCLName) {
        this.existingCLName = existingCLName;
    }

    public YAMLParams getYamlparams() {
        return yamlparams;
    }

    public void setYamlparams(YAMLParams yamlparams) {
        this.yamlparams = yamlparams;
    }

    /**
     * @return the rainyday
     */
    public RainyDayParams getRainyday() {
        return rainyday;
    }

    /**
     * @param rainyday the rainyday to set
     */
    public void setRainyday(RainyDayParams rainyday) {
        this.rainyday = rainyday;
    }

    /**
     * @return the errorCodeList
     */
    public List<String> getErrorCodeList() {
        return errorCodeList;
    }

    /**
     * @param errorCodeList the errorCodeList to set
     */
    public void setErrorCodeList(List<String> errorCodeList) {
        this.errorCodeList = errorCodeList;
    }

    /**
     * @return the treatmentList
     */
    public List<String> getTreatmentList() {
        return treatmentList;
    }

    /**
     * @param treatmentList the treatmentList to set
     */
    public void setTreatmentList(List<String> treatmentList) {
        this.treatmentList = treatmentList;
    }

    /**
     * @return the rainydayMap
     */
    public Map<String, String> getRainydayMap() {
        return rainydayMap;
    }

    /**
     * @param rainydayMap the rainydayMap to set
     */
    public void setRainydayMap(Map<String, String> rainydayMap) {
        this.rainydayMap = rainydayMap;
    }

    /**
     * @return the policyJSON
     */
    public Object getPolicyJSON() {
        return policyJSON;
    }

    /**
     * @param policyJSON the policyJSON to set
     */
    public void setPolicyJSON(Object policyJSON) {
        this.policyJSON = policyJSON;
    }

    public ClosedLoopFaultTrapDatas getTrapDatas() {
        return trapDatas;
    }

    public void setTrapDatas(ClosedLoopFaultTrapDatas trapDatas) {
        this.trapDatas = trapDatas;
    }

    public ClosedLoopFaultTrapDatas getFaultDatas() {
        return faultDatas;
    }

    public void setFaultDatas(ClosedLoopFaultTrapDatas faultDatas) {
        this.faultDatas = faultDatas;
    }

    public List<String> getAppendBlackListEntries() {
        return appendBlackListEntries;
    }

    public void setAppendBlackListEntries(List<String> appendBlackListEntries) {
        this.appendBlackListEntries = appendBlackListEntries;
    }

    public List<String> getBlackListEntries() {
        return blackListEntries;
    }

    public void setBlackListEntries(List<String> blackListEntries) {
        this.blackListEntries = blackListEntries;
    }

    public String getBlackListEntryType() {
        return blackListEntryType;
    }

    public void setBlackListEntryType(String blackListEntryType) {
        this.blackListEntryType = blackListEntryType;
    }

    public String getRawXacmlPolicy() {
        return rawXacmlPolicy;
    }

    public void setRawXacmlPolicy(String rawXacmlPolicy) {
        this.rawXacmlPolicy = rawXacmlPolicy;
    }

    public String getUiJsonBody() {
        return uiJsonBody;
    }

    public void setUiJsonBody(String uiJsonBody) {
        this.uiJsonBody = uiJsonBody;
    }
}