aboutsummaryrefslogtreecommitdiffstats
path: root/ONAP-PAP-REST/src/main/java/org/onap/policy/pap/xacml/rest/components/PolicyDbDaoTransactionInstance.java
blob: e694f7e0b038386f8b0837858837d6389566aaf2 (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
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
/*-
 * ============LICENSE_START=======================================================
 * ONAP-PAP-REST
 * ================================================================================
 * Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.
 * Modifications Copyright (C) 2019 Nordix Foundation.
 * ================================================================================
 * 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.pap.xacml.rest.components;

import com.att.research.xacml.api.pap.PAPException;
import com.att.research.xacml.api.pap.PDPPolicy;
import com.att.research.xacml.util.XACMLProperties;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.StringReader;
import java.nio.file.InvalidPathException;
import java.nio.file.Paths;
import java.util.Date;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set;

import javax.persistence.PersistenceException;
import javax.persistence.RollbackException;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.xpath.XPath;
import javax.xml.xpath.XPathFactory;

import oasis.names.tc.xacml._3_0.core.schema.wd_17.PolicySetType;
import oasis.names.tc.xacml._3_0.core.schema.wd_17.PolicyType;

import org.apache.commons.io.FilenameUtils;
import org.apache.commons.io.IOUtils;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.onap.policy.common.logging.eelf.MessageCodes;
import org.onap.policy.common.logging.eelf.PolicyLogger;
import org.onap.policy.common.logging.flexlogger.FlexLogger;
import org.onap.policy.common.logging.flexlogger.Logger;
import org.onap.policy.rest.XacmlRestProperties;
import org.onap.policy.rest.adapter.PolicyRestAdapter;
import org.onap.policy.rest.dao.PolicyDbException;
import org.onap.policy.rest.jpa.ActionBodyEntity;
import org.onap.policy.rest.jpa.ConfigurationDataEntity;
import org.onap.policy.rest.jpa.GroupEntity;
import org.onap.policy.rest.jpa.PdpEntity;
import org.onap.policy.rest.jpa.PolicyAuditlog;
import org.onap.policy.rest.jpa.PolicyEntity;
import org.onap.policy.xacml.api.pap.OnapPDP;
import org.onap.policy.xacml.api.pap.OnapPDPGroup;
import org.onap.policy.xacml.std.pap.StdPDPGroup;
import org.onap.policy.xacml.util.XACMLPolicyWriter;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.w3c.dom.Document;
import org.xml.sax.InputSource;

@Component
public class PolicyDbDaoTransactionInstance implements PolicyDbDaoTransaction {
    private static final Logger logger = FlexLogger.getLogger(PolicyDbDaoTransactionInstance.class);

    // Recurring constants
    private static final String BRACKET_CALLED = ") called";
    private static final String EXISTS = " exists";
    private static final String GROUP = "group";
    private static final String CAUGHT_EXCEPTION_ON_NOTIFY_OTHERS = "Caught Exception on notifyOthers(";

    private final Object emLock = new Object();
    long policyId;
    long groupId;
    long pdpId;
    String newGroupId;
    private boolean operationRun = false;
    private Thread transactionTimer;
    private static final String POLICY_NOTIFICATION = "policy";
    private static final String PDP_NOTIFICATION = "pdp";
    private static final String GROUP_NOTIFICATION = GROUP;

    private static final String DECISIONMS_MODEL = "MicroService_Model";
    private static boolean isJunit = false;
    Session session;

    /**
     * Instantiates a new policy DB dao transaction instance.
     *
     * @param test the test
     */
    public PolicyDbDaoTransactionInstance(String test) {
        // call the constructor with arguments
        this(Integer.parseInt(XACMLProperties.getProperty(XacmlRestProperties.PROP_PAP_TRANS_TIMEOUT)),
                Integer.parseInt(XACMLProperties.getProperty(XacmlRestProperties.PROP_PAP_TRANS_WAIT)));
    }

    public PolicyDbDaoTransactionInstance() {
        // Default Constructor
    }

    @Autowired
    public PolicyDbDaoTransactionInstance(SessionFactory sessionfactory) {
        PolicyDbDaoTransactionInstance.sessionfactory = sessionfactory;
    }

    private static SessionFactory sessionfactory;

    /**
     * Instantiates a new policy DB dao transaction instance.
     *
     * @param transactionTimeout the transaction timeout is how long the transaction can sit before rolling back
     * @param transactionWaitTime the transaction wait time is how long to wait for the transaction to start before
     */
    public PolicyDbDaoTransactionInstance(int transactionTimeout, int transactionWaitTime) {
        logger.info("\n\nPolicyDBDaoTransactionInstance() as PolicyDBDaoTransactionInstance() called:"
                + "\n   transactionTimeout = " + transactionTimeout + "\n   transactionWaitTime = "
                + transactionWaitTime + "\n\n");

        policyId = -1;
        groupId = -1;
        pdpId = -1;
        newGroupId = null;
        synchronized (emLock) {
            session = sessionfactory.openSession();
            try {
                PolicyDbDao.getPolicyDbDaoInstance().startTransactionSynced(session, transactionWaitTime);
            } catch (Exception e) {
                logger.error("Could not lock transaction within " + transactionWaitTime + " milliseconds" + e);
                throw new PersistenceException(
                        "Could not lock transaction within " + transactionWaitTime + " milliseconds");
            }
        }
        class TransactionTimer implements Runnable {

            private int sleepTime;

            public TransactionTimer(int timeout) {
                this.sleepTime = timeout;
            }

            @Override
            public void run() {
                if (logger.isDebugEnabled()) {
                    Date date = new java.util.Date();
                    logger.debug("\n\nTransactionTimer.run() - SLEEPING: " + "\n   sleepTime (ms) = " + sleepTime
                            + "\n   TimeStamp  = " + date.getTime() + "\n\n");
                }
                try {
                    Thread.sleep(sleepTime);
                } catch (InterruptedException e) {
                    // probably, the transaction was completed, the last thing
                    // we want to do is roll back
                    if (logger.isDebugEnabled()) {
                        Date date = new java.util.Date();
                        logger.debug("\n\nTransactionTimer.run() - WAKE Interrupt: " + "\n   TimeStamp = "
                                + date.getTime() + "\n\n");
                    }
                    Thread.currentThread().interrupt();
                    return;
                }
                if (logger.isDebugEnabled()) {
                    Date date = new java.util.Date();
                    logger.debug("\n\nTransactionTimer.run() - WAKE Timeout: " + "\n   TimeStamp = " + date.getTime()
                            + "\n\n");
                }
                logger.warn("PolicyDBDaoTransactionInstance - TransactionTimer - Rolling back transaction.");
                rollbackTransaction();
            }

        }

        transactionTimer = new Thread(new TransactionTimer(transactionTimeout), "transactionTimerThread");
        transactionTimer.start();

    }

    private void checkBeforeOperationRun() {
        checkBeforeOperationRun(false);
    }

    private void checkBeforeOperationRun(boolean justCheckOpen) {
        if (!isTransactionOpen()) {
            PolicyLogger.warn("checkBeforeOperationRun - There is no transaction currently open");
            throw new IllegalStateException("There is no transaction currently open");
        }
        if (operationRun && !justCheckOpen) {
            PolicyLogger.warn("checkBeforeOperationRun - "
                    + "An operation has already been performed and the current transaction should be committed");
            throw new IllegalStateException(
                    "An operation has already been performed and the current transaction should be committed");
        }
        operationRun = true;
    }

    @Override
    public void commitTransaction() {
        synchronized (emLock) {
            NotifyOtherPaps otherPaps = new NotifyOtherPaps();
            logger.debug("commitTransaction() as commitTransaction() called");
            if (!isTransactionOpen()) {
                logger.warn(
                        "There is no open transaction to commit - PolicyId - " + policyId + ", GroupId - " + groupId);
                try {
                    session.close();
                } catch (Exception e) {
                    logger.error("Exception Occured" + e);
                }
                return;
            }
            try {
                session.getTransaction().commit();
            } catch (RollbackException e) {
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                        "Caught RollbackException on em.getTransaction().commit()");
                throw new PersistenceException("The commit failed. Message:\n" + e.getMessage());
            }
            session.close();
            // need to revisit
            if (policyId >= 0) {
                if (newGroupId != null) {
                    try {
                        otherPaps.notifyOthers(policyId, POLICY_NOTIFICATION, newGroupId);
                    } catch (Exception e) {
                        PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                                CAUGHT_EXCEPTION_ON_NOTIFY_OTHERS + policyId + "," + POLICY_NOTIFICATION + ","
                                        + newGroupId + ")");
                    }
                } else {
                    try {
                        otherPaps.notifyOthers(policyId, POLICY_NOTIFICATION);
                    } catch (Exception e) {
                        PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                                CAUGHT_EXCEPTION_ON_NOTIFY_OTHERS + policyId + "," + POLICY_NOTIFICATION + ")");
                    }
                }
            }
            if (groupId >= 0) {
                // we don't want commit to fail just because this does
                if (newGroupId != null) {
                    try {
                        otherPaps.notifyOthers(groupId, GROUP_NOTIFICATION, newGroupId);
                    } catch (Exception e) {
                        PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                                CAUGHT_EXCEPTION_ON_NOTIFY_OTHERS + groupId + "," + GROUP_NOTIFICATION + ","
                                        + newGroupId + ")");
                    }
                } else {
                    try {
                        otherPaps.notifyOthers(groupId, GROUP_NOTIFICATION);
                    } catch (Exception e) {
                        PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                                CAUGHT_EXCEPTION_ON_NOTIFY_OTHERS + groupId + "," + GROUP_NOTIFICATION + ")");
                    }
                }
            }
            if (pdpId >= 0) {
                // we don't want commit to fail just because this does
                try {
                    otherPaps.notifyOthers(pdpId, PDP_NOTIFICATION);
                } catch (Exception e) {
                    PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                            CAUGHT_EXCEPTION_ON_NOTIFY_OTHERS + pdpId + "," + PDP_NOTIFICATION + ")");
                }
            }
        }
        if (transactionTimer != null) {
            transactionTimer.interrupt();
        }
    }

    @Override
    public void rollbackTransaction() {
        logger.debug("rollbackTransaction() as rollbackTransaction() called");
        synchronized (emLock) {
            if (isTransactionOpen()) {
                try {
                    session.getTransaction().rollback();
                } catch (Exception e) {
                    PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                            "Could not rollback transaction");
                }
                try {
                    session.close();
                } catch (Exception e) {
                    PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                            "Could not close Hibernate Session.");
                }

            } else {
                try {
                    session.close();
                } catch (Exception e) {
                    logger.warn("Could not close already closed transaction", e);
                }
            }
        }
        if (transactionTimer != null) {
            transactionTimer.interrupt();
        }
    }

    private void createPolicy(PolicyRestAdapter policy, String username, String policyScope, String inputPolicyName,
            String policyDataString) {
        String policyName = inputPolicyName;
        logger.debug("createPolicy(PolicyRestAdapter policy, String username, String policyScope,"
                + " String policyName, String policyDataString) as createPolicy(" + policy + ", " + username + ", "
                + policyScope + ", " + policyName + ", " + policyDataString + ")  called");
        synchronized (emLock) {
            PolicyDbDao policyDbDao = new PolicyDbDao();
            checkBeforeOperationRun();
            String configName = policyName;
            if (policyName.contains("Config_")) {
                policyName = policyName.replace(".Config_", ":Config_");
            } else if (policyName.contains("Action_")) {
                policyName = policyName.replace(".Action_", ":Action_");
            } else if (policyName.contains("Decision_MS_")) {
                policyName = policyName.replace(".Decision_MS_", ":Decision_MS_");
            } else if (policyName.contains("Decision_")) {
                policyName = policyName.replace(".Decision_", ":Decision_");
            }
            policyName = policyName.split(":")[1];
            Query createPolicyQuery = session
                    .createQuery("SELECT p FROM PolicyEntity p WHERE p.scope=:scope AND p.policyName=:policyName");
            createPolicyQuery.setParameter(PolicyDbDao.SCOPE, policyScope);
            createPolicyQuery.setParameter("policyName", policyName);
            List<?> createPolicyQueryList = createPolicyQuery.list();
            PolicyEntity newPolicyEntity;
            boolean update;
            if (createPolicyQueryList.isEmpty()) {
                newPolicyEntity = new PolicyEntity();
                update = false;
            } else if (createPolicyQueryList.size() > 1) {
                PolicyLogger.error("Somehow, more than one policy with the same "
                        + "scope, name, and deleted status were found in the database");
                throw new PersistenceException("Somehow, more than one policy with the same"
                        + " scope, name, and deleted status were found in the database");
            } else {
                newPolicyEntity = (PolicyEntity) createPolicyQueryList.get(0);
                update = true;
            }

            ActionBodyEntity newActionBodyEntity = null;
            if (policy.getPolicyType().equals(PolicyDbDao.ACTION)) {
                boolean abupdate = false;
                if (newPolicyEntity.getActionBodyEntity() == null) {
                    newActionBodyEntity = new ActionBodyEntity();
                } else {
                    newActionBodyEntity = (ActionBodyEntity) session.get(ActionBodyEntity.class,
                            newPolicyEntity.getActionBodyEntity().getActionBodyId());
                    abupdate = true;
                }

                if (newActionBodyEntity != null) {
                    // build the file path
                    // trim the .xml off the end
                    String policyNameClean = FilenameUtils.removeExtension(configName);
                    String actionBodyName = policyNameClean + ".json";

                    // get the action body
                    String actionBodyString = policy.getActionBody();
                    if (actionBodyString == null) {
                        actionBodyString = "{}";
                    }
                    newActionBodyEntity.setActionBody(actionBodyString);
                    newActionBodyEntity.setActionBodyName(actionBodyName);
                    newActionBodyEntity.setModifiedBy("PolicyDBDao.createPolicy()");
                    newActionBodyEntity.setDeleted(false);
                    if (!abupdate) {
                        newActionBodyEntity.setCreatedBy("PolicyDBDao.createPolicy()");
                    }
                    if (logger.isDebugEnabled()) {
                        logger.debug("\nPolicyDBDao.createPolicy" + "\n   newActionBodyEntity.getActionBody() = "
                                + newActionBodyEntity.getActionBody()
                                + "\n   newActionBodyEntity.getActionBodyName() = "
                                + newActionBodyEntity.getActionBodyName()
                                + "\n   newActionBodyEntity.getModifiedBy() = " + newActionBodyEntity.getModifiedBy()
                                + "\n   newActionBodyEntity.getCreatedBy() = " + newActionBodyEntity.getCreatedBy()
                                + "\n   newActionBodyEntity.isDeleted() = " + newActionBodyEntity.isDeleted()
                                + "\n   FLUSHING to DB");
                    }
                    // push the actionBodyEntity to the DB
                    if (isJunit) {
                        newActionBodyEntity.prePersist();
                    }
                    if (!abupdate) {
                        session.persist(newActionBodyEntity);
                    }
                } else {
                    // newActionBodyEntity == null
                    // We have a actionBody in the policy but we found no
                    // actionBody in the DB
                    String msg = "\n\nPolicyDBDao.createPolicy - Incoming Action policy had an "
                            + "actionBody, but it could not be found in the DB for update." + "\n  policyScope = "
                            + policyScope + "\n  policyName = " + policyName + "\n\n";
                    PolicyLogger.error("PolicyDBDao.createPolicy - Incoming Action policy had an actionBody, "
                            + "but it could not be found in the DB for update: policyName = " + policyName);
                    throw new IllegalArgumentException(msg);
                }
            }

            ConfigurationDataEntity newConfigurationDataEntity;
            if (PolicyDbDao.CONFIG.equals(policy.getPolicyType())
                    || DECISIONMS_MODEL.equals(policy.getRuleProvider())) {
                boolean configUpdate;
                if (newPolicyEntity.getConfigurationData() == null) {
                    newConfigurationDataEntity = new ConfigurationDataEntity();
                    configUpdate = false;
                } else {
                    newConfigurationDataEntity = (ConfigurationDataEntity) session.get(ConfigurationDataEntity.class,
                            newPolicyEntity.getConfigurationData().getConfigurationDataId());
                    configUpdate = true;
                }

                if (newConfigurationDataEntity != null) {
                    if (!PolicyDbDao.stringEquals(newConfigurationDataEntity.getConfigurationName(),
                            policyDbDao.getConfigFile(configName, policy))) {
                        newConfigurationDataEntity.setConfigurationName(policyDbDao.getConfigFile(configName, policy));
                    }
                    if (newConfigurationDataEntity.getConfigType() == null
                            || !newConfigurationDataEntity.getConfigType().equals(policy.getConfigType())) {
                        newConfigurationDataEntity.setConfigType(policy.getConfigType());
                    }
                    if (!configUpdate) {
                        newConfigurationDataEntity.setCreatedBy(username);
                    }
                    if (newConfigurationDataEntity.getModifiedBy() == null
                            || !newConfigurationDataEntity.getModifiedBy().equals(username)) {
                        newConfigurationDataEntity.setModifiedBy(username);
                    }
                    if (newConfigurationDataEntity.getDescription() == null
                            || !newConfigurationDataEntity.getDescription().equals("")) {
                        newConfigurationDataEntity.setDescription("");
                    }
                    if (newConfigurationDataEntity.getConfigBody() == null
                            || newConfigurationDataEntity.getConfigBody().isEmpty()
                            || (!newConfigurationDataEntity.getConfigBody().equals(policy.getConfigBodyData()))) {
                        // hopefully one of these won't be null
                        if (policy.getConfigBodyData() == null || policy.getConfigBodyData().isEmpty()) {
                            newConfigurationDataEntity.setConfigBody(policy.getJsonBody());
                        } else {
                            newConfigurationDataEntity.setConfigBody(policy.getConfigBodyData());
                        }
                    }
                    if (newConfigurationDataEntity.isDeleted()) {
                        newConfigurationDataEntity.setDeleted(false);
                    }
                    if (isJunit) {
                        newConfigurationDataEntity.prePersist();
                    }
                    if (!configUpdate) {
                        session.persist(newConfigurationDataEntity);
                    }
                } else {
                    // We have a configurationData body in the policy but we
                    // found no configurationData body in the DB
                    String msg = "\n\nPolicyDBDao.createPolicy - Incoming Config policy had a "
                            + "configurationData body, but it could not be found in the DB for update."
                            + "\n  policyScope = " + policyScope + "\n  policyName = " + policyName + "\n\n";
                    PolicyLogger
                            .error("PolicyDBDao.createPolicy - Incoming Config policy had a configurationData body, "
                                    + "but it could not be found in the DB for update: policyName = " + policyName);
                    throw new IllegalArgumentException(msg);
                }

            } else {
                newConfigurationDataEntity = null;
            }
            policyId = newPolicyEntity.getPolicyId();

            if (!PolicyDbDao.stringEquals(newPolicyEntity.getPolicyName(), policyName)) {
                newPolicyEntity.setPolicyName(policyName);
            }
            if (!PolicyDbDao.stringEquals(newPolicyEntity.getCreatedBy(), username)) {
                newPolicyEntity.setCreatedBy(username);
            }
            if (!PolicyDbDao.stringEquals(newPolicyEntity.getDescription(), policy.getPolicyDescription())) {
                newPolicyEntity.setDescription(policy.getPolicyDescription());
            }
            if (!PolicyDbDao.stringEquals(newPolicyEntity.getModifiedBy(), username)) {
                newPolicyEntity.setModifiedBy(username);
            }
            if (!PolicyDbDao.stringEquals(newPolicyEntity.getPolicyData(), policyDataString)) {
                newPolicyEntity.setPolicyData(policyDataString);
            }
            if (!PolicyDbDao.stringEquals(newPolicyEntity.getScope(), policyScope)) {
                newPolicyEntity.setScope(policyScope);
            }
            if (newPolicyEntity.isDeleted()) {
                newPolicyEntity.setDeleted(false);
            }
            newPolicyEntity.setConfigurationData(newConfigurationDataEntity);
            newPolicyEntity.setActionBodyEntity(newActionBodyEntity);
            if (isJunit) {
                newPolicyEntity.prePersist();
            }
            if (!update) {
                session.persist(newPolicyEntity);
            }
            session.flush();
            this.policyId = newPolicyEntity.getPolicyId();
        }
        return;
    }

    @Override
    public void createPolicy(Policy policy, String username) {
        InputStream policyXmlStream = null;
        try {
            logger.debug("createPolicy(PolicyRestAdapter policy, String username) as createPolicy(" + policy + ","
                    + username + BRACKET_CALLED);
            String policyScope = policy.policyAdapter.getDomainDir().replace(File.separator, ".");
            // Does not need to be XACMLPolicyWriterWithPapNotify since it is
            // already in the PAP
            // and this transaction is intercepted up stream.
            String policyDataString;

            try {
                if (policy.policyAdapter.getData() instanceof PolicySetType) {
                    policyXmlStream = XACMLPolicyWriter
                            .getPolicySetXmlAsInputStream((PolicySetType) policy.getCorrectPolicyDataObject());
                } else {
                    policyXmlStream = XACMLPolicyWriter.getXmlAsInputStream(policy.getCorrectPolicyDataObject());
                }
                policyDataString = IOUtils.toString(policyXmlStream);
            } catch (IOException e) {
                policyDataString = "could not read";
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                        "Caught IOException on IOUtils.toString(" + policyXmlStream + ")");
                throw new IllegalArgumentException("Cannot parse the policy xml from the PolicyRestAdapter.");
            }

            IOUtils.closeQuietly(policyXmlStream);
            if (PolicyDbDao.isJunit()) {
                if (policyDataString != null) {
                    logger.warn("isJUnit will overwrite policyDataString");
                }
                // Using parentPath object to set policy data.
                policyDataString = policy.policyAdapter.getParentPath();
            }
            String configPath = "";
            if (PolicyDbDao.CONFIG.equalsIgnoreCase(policy.policyAdapter.getPolicyType())) {
                configPath = evaluateXPath(
                        "/Policy/Rule/AdviceExpressions/AdviceExpression[contains(@AdviceId,'ID')]/"
                                + "AttributeAssignmentExpression[@AttributeId='URLID']/AttributeValue/text()",
                        policyDataString);
            } else if (PolicyDbDao.ACTION.equalsIgnoreCase(policy.policyAdapter.getPolicyType())) {
                configPath = evaluateXPath(
                        "/Policy/Rule/ObligationExpressions/ObligationExpression[contains(@ObligationId, "
                                + policy.policyAdapter.getActionAttribute()
                                + ")]/AttributeAssignmentExpression[@AttributeId='body']/AttributeValue/text()",
                        policyDataString);
            } else if (DECISIONMS_MODEL.equalsIgnoreCase(policy.policyAdapter.getRuleProvider())) {
                configPath = evaluateXPath(
                        "/Policy/Rule/AdviceExpressions/AdviceExpression[contains(@AdviceId,'MicroService')]/"
                                + "AttributeAssignmentExpression[@AttributeId='URLID']/AttributeValue/text()",
                        policyDataString);
            }

            String prefix = null;
            if (PolicyDbDao.CONFIG.equalsIgnoreCase(policy.policyAdapter.getPolicyType())
                    || DECISIONMS_MODEL.equalsIgnoreCase(policy.policyAdapter.getRuleProvider())) {
                prefix = configPath.substring(configPath.indexOf(policyScope + ".") + policyScope.concat(".").length(),
                        configPath.lastIndexOf(policy.policyAdapter.getPolicyName()));
                if (PolicyDbDao.isNullOrEmpty(policy.policyAdapter.getConfigBodyData())) {
                    String configData = "";
                    try {
                        String newConfigPath = configPath;
                        try {
                            newConfigPath = processConfigPath(newConfigPath);
                        } catch (Exception e2) {
                            logger.error("Could not process config path: " + newConfigPath, e2);
                        }
                        configData = readConfigFile(newConfigPath);
                    } catch (Exception e) {
                        logger.error("Could not read config body data for " + configPath, e);
                    }
                    policy.policyAdapter.setConfigBodyData(configData);
                }
            } else if (PolicyDbDao.ACTION.equalsIgnoreCase(policy.policyAdapter.getPolicyType())) {
                prefix = "Action_";
            } else if ("Decision".equalsIgnoreCase(policy.policyAdapter.getPolicyType())) {
                prefix = "Decision_";
            }

            if (!(policy.policyAdapter.getData() instanceof PolicyType)
                    && !(policy.policyAdapter.getData() instanceof PolicySetType)) {
                PolicyLogger.error("The data field is not an instance of PolicyType");
                throw new IllegalArgumentException("The data field is not an instance of PolicyType");
            }
            String finalName = policyScope + "." + prefix + policy.policyAdapter.getPolicyName() + "."
                    + policy.policyAdapter.getHighestVersion() + ".xml";
            if (policy.policyAdapter.getConfigType() == null || "".equals(policy.policyAdapter.getConfigType())) {
                // get the config file extension
                String ext = "";
                if (configPath != null && !"".equalsIgnoreCase(configPath)) {
                    ext = configPath.substring(configPath.lastIndexOf('.'), configPath.length());
                }

                if (ext.contains("txt")) {
                    policy.policyAdapter.setConfigType(PolicyDbDao.OTHER_CONFIG);
                } else if (ext.contains("json")) {
                    policy.policyAdapter.setConfigType(PolicyDbDao.JSON_CONFIG);
                } else if (ext.contains("xml")) {
                    policy.policyAdapter.setConfigType(PolicyDbDao.XML_CONFIG);
                } else if (ext.contains("properties")) {
                    policy.policyAdapter.setConfigType(PolicyDbDao.PROPERTIES_CONFIG);
                } else {
                    if (policy.policyAdapter.getPolicyType().equalsIgnoreCase(PolicyDbDao.ACTION)) {
                        policy.policyAdapter.setConfigType(PolicyDbDao.JSON_CONFIG);
                    }
                }
            }

            createPolicy(policy.policyAdapter, username, policyScope, finalName, policyDataString);
        } finally {
            if (policyXmlStream != null) {
                try {
                    policyXmlStream.close();
                } catch (IOException e) {
                    logger.error("Exception Occured while closing input stream" + e);
                }
            }
        }
    }

    public PolicyEntity getPolicy(int policyId) {
        return getPolicy(policyId, null, null);
    }

    public PolicyEntity getPolicy(String policyName, String scope) {
        return getPolicy(-1, policyName, scope);
    }

    private PolicyEntity getPolicy(int policyIdVar, String policyName, String scope) {
        logger.debug("getPolicy(int policyId, String policyName) as " + " getPolicy(" + policyIdVar + "," + policyName
                + BRACKET_CALLED);
        if (policyIdVar < 0 && PolicyDbDao.isNullOrEmpty(policyName, scope)) {
            throw new IllegalArgumentException("policyID must be at least 0 or policyName must be not null or blank");
        }

        synchronized (emLock) {
            checkBeforeOperationRun(true);
            // check if group exists
            String locPolicyId;
            Query policyQuery;
            if (!PolicyDbDao.isNullOrEmpty(policyName, scope)) {
                locPolicyId = policyName;
                policyQuery =
                        session.createQuery("SELECT p FROM PolicyEntity p WHERE p.policyName=:name AND p.scope=:scope");
                policyQuery.setParameter("name", locPolicyId);
                policyQuery.setParameter("scope", scope);
            } else {
                locPolicyId = String.valueOf(policyIdVar);
                policyQuery = session.getNamedQuery("PolicyEntity.FindById");
                policyQuery.setParameter("id", locPolicyId);
            }
            List<?> policyQueryList;
            try {
                policyQueryList = policyQuery.list();
            } catch (Exception e) {
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                        "Caught Exception trying to get policy with policyQuery.getResultList()");
                throw new PersistenceException("Query failed trying to get policy " + locPolicyId);
            }

            if (policyQueryList.isEmpty()) {
                PolicyLogger.error("Policy does not exist with id " + locPolicyId);
                throw new PersistenceException("Group policy is being added to does not exist with id " + locPolicyId);
            } else if (policyQueryList.size() > 1) {
                PolicyLogger.error(PolicyDbDao.DUP_POLICYID + locPolicyId + PolicyDbDao.FOUND_IN_DB);
                throw new PersistenceException(PolicyDbDao.DUP_POLICYID + locPolicyId + PolicyDbDao.FOUND_IN_DB);
            }
            return (PolicyEntity) policyQueryList.get(0);
        }
    }

    @Override
    public GroupEntity getGroup(long groupKey) {
        logger.debug("getGroup(int groupKey) as getGroup(" + groupKey + BRACKET_CALLED);
        if (groupKey < 0) {
            throw new IllegalArgumentException("groupKey must be at least 0");
        }
        synchronized (emLock) {
            checkBeforeOperationRun(true);
            // check if group exists
            Query groupQuery = session.createQuery("SELECT g FROM GroupEntity g WHERE g.groupKey=:groupKey");
            groupQuery.setParameter("groupKey", groupKey);
            List<?> groupQueryList;
            try {
                groupQueryList = groupQuery.list();
            } catch (Exception e) {
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                        "Caught Exception trying to get group with groupQuery.getResultList()");
                throw new PersistenceException(PolicyDbDao.QUERY_FAILED_GET_GROUP + groupKey);
            }
            if (groupQueryList.isEmpty()) {
                PolicyLogger.error("Group does not exist with groupKey " + groupKey);
                throw new PersistenceException("Group does not exist with groupKey " + groupKey);
            } else if (groupQueryList.size() > 1) {
                PolicyLogger
                        .error("Somehow, more than one group with the groupKey " + groupKey + PolicyDbDao.FOUND_IN_DB);
                throw new PersistenceException(
                        "Somehow, more than one group with the groupKey " + groupKey + PolicyDbDao.FOUND_IN_DB);
            }
            return (GroupEntity) groupQueryList.get(0);
        }
    }

    @Override
    public GroupEntity getGroup(String groupId) {
        logger.debug("getGroup(String groupId) as getGroup(" + groupId + BRACKET_CALLED);
        if (PolicyDbDao.isNullOrEmpty(groupId)) {
            throw new IllegalArgumentException("groupId must not be null or empty");
        }
        synchronized (emLock) {
            checkBeforeOperationRun(true);
            // check if group exists
            Query groupQuery = session.createQuery("SELECT g FROM GroupEntity g WHERE g.groupId=:groupId");
            groupQuery.setParameter(PolicyDbDao.GROUP_ID, groupId);
            List<?> groupQueryList;
            try {
                groupQueryList = groupQuery.list();
            } catch (Exception e) {
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                        "Caught Exception trying to get group with groupQuery.getResultList()");
                throw new PersistenceException(PolicyDbDao.QUERY_FAILED_GET_GROUP + groupId);
            }
            if (groupQueryList.isEmpty()) {
                PolicyLogger.error("Group does not exist with id " + groupId);
                throw new PersistenceException("Group does not exist with id " + groupId);
            } else if (groupQueryList.size() > 1) {
                PolicyLogger.error(PolicyDbDao.DUPLICATE_GROUPID + groupId + PolicyDbDao.FOUND_IN_DB);
                throw new PersistenceException(PolicyDbDao.DUPLICATE_GROUPID + groupId + PolicyDbDao.FOUND_IN_DB);
            }
            return (GroupEntity) groupQueryList.get(0);
        }
    }

    @Override
    public List<?> getPdpsInGroup(long groupKey) {
        logger.debug("getPdpsInGroup(int groupKey) as getPdpsInGroup(" + groupKey + BRACKET_CALLED);
        if (groupKey < 0) {
            throw new IllegalArgumentException("groupId must not be < 0");
        }
        synchronized (emLock) {
            checkBeforeOperationRun(true);
            Query pdpsQuery = session.createQuery("SELECT p FROM PdpEntity p WHERE p.groupEntity=:group");
            pdpsQuery.setParameter(GROUP, getGroup(groupKey));
            return pdpsQuery.list();
        }
    }

    @Override
    public PdpEntity getPdp(long pdpKey) {
        logger.debug("getPdp(int pdpKey) as getPdp(" + pdpKey + BRACKET_CALLED);
        if (pdpKey < 0) {
            throw new IllegalArgumentException("pdpKey must be at least 0");
        }
        synchronized (emLock) {
            checkBeforeOperationRun(true);
            // check if group exists
            Query pdpQuery = session.createQuery("SELECT p FROM PdpEntity p WHERE p.pdpKey=:pdpKey");
            pdpQuery.setParameter("pdpKey", pdpKey);
            List<?> pdpQueryList;
            try {
                pdpQueryList = pdpQuery.list();
            } catch (Exception e) {
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                        "Caught Exception trying to get pdp with pdpQuery.getResultList()");
                throw new PersistenceException("Query failed trying to get pdp " + pdpKey);
            }
            if (pdpQueryList.isEmpty()) {
                PolicyLogger.error("Pdp does not exist with pdpKey " + pdpKey);
                throw new PersistenceException("Pdp does not exist with pdpKey " + pdpKey);
            } else if (pdpQueryList.size() > 1) {
                PolicyLogger.error("Somehow, more than one pdp with the pdpKey " + pdpKey + PolicyDbDao.FOUND_IN_DB);
                throw new PersistenceException(
                        "Somehow, more than one pdp with the pdpKey " + pdpKey + PolicyDbDao.FOUND_IN_DB);
            }
            return (PdpEntity) pdpQueryList.get(0);
        }
    }

    @Override
    public boolean isTransactionOpen() {
        logger.debug("isTransactionOpen() as isTransactionOpen() called");
        synchronized (emLock) {
            return session.isOpen() && session.getTransaction().isActive();
        }
    }

    private String processConfigPath(String inputConfigPath) {
        String configPath = inputConfigPath;
        String webappsPath = XACMLProperties.getProperty(XacmlRestProperties.PROP_PAP_WEBAPPS);
        if (webappsPath == null) {
            logger.error("Webapps property does not exist");
            throw new IllegalArgumentException("Webapps property does not exist");
        }
        configPath = configPath.replace("$URL", webappsPath);
        // make sure the correct slashes are in
        try {
            configPath = Paths.get(configPath).toString();
        } catch (InvalidPathException e) {
            logger.error("Invalid config path: " + configPath, e);
            throw new IllegalArgumentException("Invalid config path: " + configPath);
        }
        return configPath;
    }

    private String readConfigFile(String configPath) {
        String configDataString = null;
        InputStream configContentStream = null;
        try {
            configContentStream = new FileInputStream(configPath);
            configDataString = IOUtils.toString(configContentStream);
        } catch (FileNotFoundException e) {
            logger.error("Caught FileNotFoundException on new FileInputStream(" + configPath + ")", e);
            throw new IllegalArgumentException("The config file path does not exist");
        } catch (IOException e2) {
            logger.error("Caught IOException on newIOUtils.toString(" + configContentStream + ")", e2);
            throw new IllegalArgumentException("The config file path cannot be read");
        } finally {
            IOUtils.closeQuietly(configContentStream);
        }
        if (configDataString == null) {
            throw new IllegalArgumentException("The config file path cannot be read");
        }
        return configDataString;
    }

    @Override
    public void close() {
        synchronized (emLock) {
            if (session.isOpen()) {
                if (session.getTransaction().isActive()) {
                    session.getTransaction().rollback();
                }
                session.close();
            }
            if (transactionTimer != null) {
                transactionTimer.interrupt();
            }
        }
    }

    @Override
    public void createGroup(String groupId, String groupName, String inputGroupDescription, String username) {
        String groupDescription = inputGroupDescription;
        logger.debug("deletePolicy(String policyToDeletes) as createGroup(" + groupId + ", " + groupName + ", "
                + groupDescription + BRACKET_CALLED);
        if (PolicyDbDao.isNullOrEmpty(groupId, groupName, username)) {
            throw new IllegalArgumentException("groupId, groupName, and username must not be null or empty");
        }
        if (groupDescription == null) {
            groupDescription = "";
        }

        synchronized (emLock) {
            checkBeforeOperationRun();
            Query checkGroupQuery = session.createQuery(PolicyDbDao.GROUPENTITY_SELECT);
            checkGroupQuery.setParameter(PolicyDbDao.GROUP_ID, groupId);
            checkGroupQuery.setParameter(PolicyDbDao.DELETED, false);
            List<?> checkGroupQueryList;
            try {
                checkGroupQueryList = checkGroupQuery.list();
            } catch (Exception e) {
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                        "Caught Exception on checkGroupQuery.getResultList()");
                throw new PersistenceException(PolicyDbDao.QUERY_FAILED_FOR_GROUP);
            }
            if (!checkGroupQueryList.isEmpty()) {
                PolicyLogger.error("The group being added already exists with id " + groupId);
                throw new PersistenceException("The group being added already exists with id " + groupId);
            }
            GroupEntity newGroup = new GroupEntity();
            newGroup.setCreatedBy(username);
            newGroup.setModifiedBy(username);
            newGroup.setGroupName(groupName);
            newGroup.setGroupId(groupId);
            newGroup.setDescription(groupDescription);
            if (isJunit) {
                newGroup.prePersist();
            }
            session.persist(newGroup);
            session.flush();
            this.groupId = newGroup.getGroupKey();
        }
    }

    @Override
    public void updateGroup(OnapPDPGroup group, String requestType, String username) {
        logger.info("PolicyDBDao: updateGroup(PDPGroup group) as updateGroup(" + group + "," + requestType + ","
                + username + BRACKET_CALLED);
        if (group == null) {
            throw new IllegalArgumentException("PDPGroup group must not be null");
        }
        if (PolicyDbDao.isNullOrEmpty(group.getId(), requestType)) {
            throw new IllegalArgumentException("group.getId() and username must not be null or empty");
        }

        synchronized (emLock) {
            PolicyDbDao policyDbDaoVar = new PolicyDbDao();
            checkBeforeOperationRun();
            Query getGroupQuery = session.createQuery(PolicyDbDao.GROUPENTITY_SELECT);
            getGroupQuery.setParameter(PolicyDbDao.GROUP_ID, group.getId());
            getGroupQuery.setParameter(PolicyDbDao.DELETED, false);
            List<?> getGroupQueryList;
            try {
                getGroupQueryList = getGroupQuery.list();
            } catch (Exception e) {
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                        "Caught Exception on getGroupQuery.getResultList()");
                throw new PersistenceException(PolicyDbDao.QUERY_FAILED_GET_GROUP + group.getId() + " for editing");
            }
            if (getGroupQueryList.isEmpty()) {
                PolicyLogger.error("The group cannot be found to update with id " + group.getId());
                throw new PersistenceException("The group cannot be found to update with id " + group.getId());
            } else if (getGroupQueryList.size() > 1) {
                PolicyLogger.error(PolicyDbDao.DUPLICATE_GROUPID + group.getId() + PolicyDbDao.DELETED_STATUS_FOUND);
                throw new PersistenceException(
                        PolicyDbDao.DUPLICATE_GROUPID + group.getId() + PolicyDbDao.DELETED_STATUS_FOUND);
            }
            GroupEntity groupToUpdateInDb = (GroupEntity) getGroupQueryList.get(0);
            if (!PolicyDbDao.stringEquals(groupToUpdateInDb.getModifiedBy(), requestType)) {
                groupToUpdateInDb.setModifiedBy(requestType);
            }
            if (group.getDescription() != null
                    && !PolicyDbDao.stringEquals(group.getDescription(), groupToUpdateInDb.getDescription())) {
                groupToUpdateInDb.setDescription(group.getDescription());
            }
            // let's find out what policies have been deleted
            StdPDPGroup oldGroup = null;
            try {
                oldGroup = (StdPDPGroup) PolicyDbDao.getPolicyDbDaoInstance().getPapEngine().getGroup(group.getId());
            } catch (PAPException e1) {
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e1, PolicyDbDao.POLICYDBDAO_VAR,
                        "We cannot get the group from the papEngine to delete policies");
            }
            if (oldGroup == null) {
                PolicyLogger.error("We cannot get the group from the papEngine to delete policies");
            } else {
                Set<String> newPolicySet = new HashSet<>(group.getPolicies().size());
                // a multiple of n runtime is faster than n^2, so I am using a
                // hashset to do the comparison
                for (PDPPolicy pol : group.getPolicies()) {
                    newPolicySet.add(pol.getId());
                }
                for (PDPPolicy pol : oldGroup.getPolicies()) {
                    // should be fast since getPolicies uses a HashSet in
                    // StdPDPGroup
                    if (!newPolicySet.contains(pol.getId())) {
                        String[] scopeAndName = policyDbDaoVar.getNameScopeAndVersionFromPdpPolicy(pol.getId());
                        PolicyEntity policyToDelete = null;
                        try {
                            if (scopeAndName != null) {
                                policyToDelete = getPolicy(scopeAndName[0], scopeAndName[1]);
                                if ("XACMLPapServlet.doDelete".equals(requestType)) {
                                    Iterator<PolicyEntity> dbPolicyIt = groupToUpdateInDb.getPolicies().iterator();
                                    String policyName = policyDbDaoVar.getPolicyNameAndVersionFromPolicyFileName(
                                            policyToDelete.getPolicyName())[0];

                                    logger.info("PolicyDBDao: delete policy from GroupEntity");
                                    try {
                                        while (dbPolicyIt.hasNext()) {
                                            PolicyEntity dbpolicy = dbPolicyIt.next();
                                            if (policyToDelete.getScope().equals(dbpolicy.getScope())
                                                    && policyDbDaoVar.getPolicyNameAndVersionFromPolicyFileName(
                                                            dbpolicy.getPolicyName())[0].equals(policyName)) {
                                                dbPolicyIt.remove();
                                                auditPdpOperations(username,
                                                        dbpolicy.getScope() + "." + dbpolicy.getPolicyName(), "Delete");
                                                logger.info("PolicyDBDao: deleting policy from the existing group:\n "
                                                        + "policyName is " + policyToDelete.getScope() + "."
                                                        + policyToDelete.getPolicyName() + "\n" + "group is "
                                                        + groupToUpdateInDb.getGroupId());
                                            }
                                        }
                                    } catch (Exception e) {
                                        logger.debug(e);
                                        PolicyLogger.error("Could not delete policy with name: "
                                                + policyToDelete.getScope() + "." + policyToDelete.getPolicyName()
                                                + "\n ID: " + policyToDelete.getPolicyId());
                                    }
                                }
                            }
                        } catch (Exception e) {
                            PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                                    "Could not get policy to remove: " + pol.getId());
                            throw new PersistenceException("Could not get policy to remove: " + pol.getId());
                        }
                    }
                }
            }

            if (group.getName() != null
                    && !PolicyDbDao.stringEquals(group.getName(), groupToUpdateInDb.getGroupName())) {
                // we need to check if the new id exists in the database
                String newGrpId = PolicyDbDao.createNewPdpGroupId(group.getName());
                Query checkGroupQuery = session.createQuery(PolicyDbDao.GROUPENTITY_SELECT);
                checkGroupQuery.setParameter(PolicyDbDao.GROUP_ID, newGrpId);
                checkGroupQuery.setParameter(PolicyDbDao.DELETED, false);
                List<?> checkGroupQueryList;
                try {
                    checkGroupQueryList = checkGroupQuery.list();
                } catch (Exception e) {
                    PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                            "Caught Exception on checkGroupQuery.getResultList()");
                    throw new PersistenceException(PolicyDbDao.QUERY_FAILED_FOR_GROUP);
                }
                if (!checkGroupQueryList.isEmpty()) {
                    PolicyLogger.error("The new group name already exists, group id " + newGrpId);
                    throw new PersistenceException("The new group name already exists, group id " + newGrpId);
                }
                groupToUpdateInDb.setGroupId(newGrpId);
                groupToUpdateInDb.setGroupName(group.getName());
                this.newGroupId = group.getId();
            }
            session.flush();
            this.groupId = groupToUpdateInDb.getGroupKey();
        }
    }

    @Override
    public void addPdpToGroup(String pdpId, String groupIdVar, String pdpName, String pdpDescription, int pdpJmxPort,
            String username) {
        logger.debug("addPdpToGroup(String pdpID, String groupID, String pdpName, "
                + "String pdpDescription, int pdpJmxPort, String username) as addPdpToGroup(" + pdpId + ", "
                + groupIdVar + ", " + pdpName + ", " + pdpDescription + ", " + pdpJmxPort + ", " + username
                + BRACKET_CALLED);
        if (PolicyDbDao.isNullOrEmpty(pdpId, groupIdVar, pdpName, username)) {
            throw new IllegalArgumentException("pdpID, groupID, pdpName, and username must not be null or empty");
        }
        synchronized (emLock) {
            checkBeforeOperationRun();
            Query checkGroupQuery = session.createQuery(PolicyDbDao.GROUPENTITY_SELECT);
            checkGroupQuery.setParameter(PolicyDbDao.GROUP_ID, groupIdVar);
            checkGroupQuery.setParameter(PolicyDbDao.DELETED, false);
            List<?> checkGroupQueryList;
            try {
                checkGroupQueryList = checkGroupQuery.list();
            } catch (Exception e) {
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                        "Caught Exception trying to check for existing group on checkGroupQuery.getResultList()");
                throw new PersistenceException(PolicyDbDao.QUERY_FAILED_FOR_GROUP);
            }
            if (checkGroupQueryList.size() != 1) {
                PolicyLogger.error("The group does not exist");
                throw new PersistenceException("The group does not exist");
            }
            Query checkDuplicateQuery = session.createQuery(PolicyDbDao.PDPENTITY_SELECT);
            checkDuplicateQuery.setParameter(PolicyDbDao.PDP_ID, pdpId);
            checkDuplicateQuery.setParameter(PolicyDbDao.DELETED, false);
            List<?> checkDuplicateList;
            try {
                checkDuplicateList = checkDuplicateQuery.list();
            } catch (Exception e) {
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                        "Caught Exception trying to check for duplicate PDP " + pdpId
                                + " on checkDuplicateQuery.getResultList()");
                throw new PersistenceException("Query failed trying to check for duplicate PDP " + pdpId);
            }
            PdpEntity newPdp;
            if (!checkDuplicateList.isEmpty()) {
                logger.warn("PDP already exists with id " + pdpId);
                newPdp = (PdpEntity) checkDuplicateList.get(0);
            } else {
                newPdp = new PdpEntity();
            }

            newPdp.setCreatedBy(username);
            newPdp.setDeleted(false);
            newPdp.setDescription(pdpDescription);
            newPdp.setGroup((GroupEntity) checkGroupQueryList.get(0));
            newPdp.setJmxPort(pdpJmxPort);
            newPdp.setModifiedBy(username);
            newPdp.setPdpId(pdpId);
            newPdp.setPdpName(pdpName);
            if (isJunit) {
                newPdp.prePersist();
            }
            session.persist(newPdp);
            session.flush();
            this.pdpId = newPdp.getPdpKey();
        }
    }

    @Override
    public void updatePdp(OnapPDP pdp, String username) {
        logger.debug("updatePdp(PDP pdp, String username) as updatePdp(" + pdp + "," + username + BRACKET_CALLED);
        if (pdp == null) {
            throw new IllegalArgumentException("PDP pdp must not be null");
        }
        if (PolicyDbDao.isNullOrEmpty(pdp.getId(), username)) {
            throw new IllegalArgumentException("pdp.getId() and username must not be null or empty");
        }

        synchronized (emLock) {
            checkBeforeOperationRun();
            Query getPdpQuery = session.createQuery(PolicyDbDao.PDPENTITY_SELECT);
            getPdpQuery.setParameter(PolicyDbDao.PDP_ID, pdp.getId());
            getPdpQuery.setParameter(PolicyDbDao.DELETED, false);
            List<?> getPdpQueryList;
            try {
                getPdpQueryList = getPdpQuery.list();
            } catch (Exception e) {
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                        "Caught Exception on getPdpQuery.getResultList()");
                throw new PersistenceException("Query failed trying to get PDP " + pdp.getId());
            }
            if (getPdpQueryList.isEmpty()) {
                PolicyLogger.error("The pdp cannot be found to update with id " + pdp.getId());
                throw new PersistenceException("The pdp cannot be found to update with id " + pdp.getId());
            } else if (getPdpQueryList.size() > 1) {
                PolicyLogger.error(PolicyDbDao.MORE_THAN_ONE_PDP + pdp.getId() + PolicyDbDao.DELETED_STATUS_FOUND);
                throw new PersistenceException(
                        PolicyDbDao.MORE_THAN_ONE_PDP + pdp.getId() + PolicyDbDao.DELETED_STATUS_FOUND);
            }
            PdpEntity pdpToUpdate = (PdpEntity) getPdpQueryList.get(0);
            if (!PolicyDbDao.stringEquals(pdpToUpdate.getModifiedBy(), username)) {
                pdpToUpdate.setModifiedBy(username);
            }
            if (pdp.getDescription() != null
                    && !PolicyDbDao.stringEquals(pdp.getDescription(), pdpToUpdate.getDescription())) {
                pdpToUpdate.setDescription(pdp.getDescription());
            }
            if (pdp.getName() != null && !PolicyDbDao.stringEquals(pdp.getName(), pdpToUpdate.getPdpName())) {
                pdpToUpdate.setPdpName(pdp.getName());
            }
            if (pdp.getJmxPort() != null && !pdp.getJmxPort().equals(pdpToUpdate.getJmxPort())) {
                pdpToUpdate.setJmxPort(pdp.getJmxPort());
            }

            session.flush();
            this.pdpId = pdpToUpdate.getPdpKey();
        }
    }

    @Override
    public void movePdp(OnapPDP pdp, OnapPDPGroup group, String username) {
        logger.debug("movePdp(PDP pdp, PDPGroup group, String username) as movePdp(" + pdp + "," + group + ","
                + username + BRACKET_CALLED);
        if (pdp == null || group == null) {
            throw new IllegalArgumentException("PDP pdp and PDPGroup group must not be null");
        }
        if (PolicyDbDao.isNullOrEmpty(username, pdp.getId(), group.getId())) {
            throw new IllegalArgumentException("pdp.getId(), group.getId(), and username must not be null or empty");
        }

        synchronized (emLock) {
            checkBeforeOperationRun();
            // check if pdp exists
            Query getPdpQuery = session.createQuery(PolicyDbDao.PDPENTITY_SELECT);
            getPdpQuery.setParameter(PolicyDbDao.PDP_ID, pdp.getId());
            getPdpQuery.setParameter(PolicyDbDao.DELETED, false);
            List<?> getPdpQueryList;
            try {
                getPdpQueryList = getPdpQuery.list();
            } catch (Exception e) {
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                        "Caught Exception on getPdpQuery.getResultList()");
                throw new PersistenceException("Query failed trying to get pdp to move with id " + pdp.getId());
            }
            if (getPdpQueryList.isEmpty()) {
                PolicyLogger.error("The pdp cannot be found to move with id " + pdp.getId());
                throw new PersistenceException("The pdp cannot be found to move with id " + pdp.getId());
            } else if (getPdpQueryList.size() > 1) {
                PolicyLogger.error(PolicyDbDao.MORE_THAN_ONE_PDP + pdp.getId() + PolicyDbDao.DELETED_STATUS_FOUND);
                throw new PersistenceException(
                        PolicyDbDao.MORE_THAN_ONE_PDP + pdp.getId() + PolicyDbDao.DELETED_STATUS_FOUND);
            }

            // check if new group exists
            Query checkGroupQuery = session.createQuery(PolicyDbDao.GROUPENTITY_SELECT);
            checkGroupQuery.setParameter(PolicyDbDao.GROUP_ID, group.getId());
            checkGroupQuery.setParameter(PolicyDbDao.DELETED, false);
            List<?> checkGroupQueryList;
            try {
                checkGroupQueryList = checkGroupQuery.list();
            } catch (Exception e) {
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                        "Caught Exception trying to get group on checkGroupQuery.getResultList()");
                throw new PersistenceException("Query failed trying to get new group " + group.getId());
            }
            if (checkGroupQueryList.size() != 1) {
                PolicyLogger.error("The group " + group.getId() + " does not exist");
                throw new PersistenceException("The group " + group.getId() + " does not exist");
            }
            GroupEntity groupToMoveInto = (GroupEntity) checkGroupQueryList.get(0);
            PdpEntity pdpToUpdate = (PdpEntity) getPdpQueryList.get(0);
            pdpToUpdate.setGroup(groupToMoveInto);
            if (!PolicyDbDao.stringEquals(pdpToUpdate.getModifiedBy(), username)) {
                pdpToUpdate.setModifiedBy(username);
            }

            session.flush();
            this.pdpId = pdpToUpdate.getPdpKey();
        }
    }

    @Override
    public void changeDefaultGroup(OnapPDPGroup group, String username) {
        logger.debug("changeDefaultGroup(PDPGroup group, String username) as changeDefaultGroup(" + group + ","
                + username + BRACKET_CALLED);
        if (group == null) {
            throw new IllegalArgumentException("PDPGroup group must not be null");
        }
        if (PolicyDbDao.isNullOrEmpty(group.getId(), username)) {
            throw new IllegalArgumentException("group.getId() and username must not be null or empty");
        }

        synchronized (emLock) {
            checkBeforeOperationRun();
            Query getGroupQuery = session.createQuery(PolicyDbDao.GROUPENTITY_SELECT);
            getGroupQuery.setParameter(PolicyDbDao.GROUP_ID, group.getId());
            getGroupQuery.setParameter(PolicyDbDao.DELETED, false);
            List<?> getGroupQueryList;
            try {
                getGroupQueryList = getGroupQuery.list();
            } catch (Exception e) {
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                        "Caught Exception on getGroupQuery.getResultList()");
                throw new PersistenceException(PolicyDbDao.QUERY_FAILED_GET_GROUP + group.getId());
            }
            if (getGroupQueryList.isEmpty()) {
                PolicyLogger.error("The group cannot be found to set default with id " + group.getId());
                throw new PersistenceException("The group cannot be found to set default with id " + group.getId());
            } else if (getGroupQueryList.size() > 1) {
                PolicyLogger.error(PolicyDbDao.DUPLICATE_GROUPID + group.getId() + PolicyDbDao.DELETED_STATUS_FOUND);
                throw new PersistenceException(
                        PolicyDbDao.DUPLICATE_GROUPID + group.getId() + PolicyDbDao.DELETED_STATUS_FOUND);
            }
            GroupEntity newDefaultGroup = (GroupEntity) getGroupQueryList.get(0);
            newDefaultGroup.setDefaultGroup(true);
            if (!PolicyDbDao.stringEquals(newDefaultGroup.getModifiedBy(), username)) {
                newDefaultGroup.setModifiedBy(username);
            }

            session.flush();
            this.groupId = newDefaultGroup.getGroupKey();
            Query setAllGroupsNotDefault = session.createQuery("UPDATE GroupEntity g SET g.defaultGroup=:defaultGroup "
                    + "WHERE g.deleted=:deleted AND g.groupKey<>:groupKey");
            // not going to set modified by for all groups
            setAllGroupsNotDefault.setParameter("defaultGroup", false);
            setAllGroupsNotDefault.setParameter(PolicyDbDao.DELETED, false);
            setAllGroupsNotDefault.setParameter("groupKey", newDefaultGroup.getGroupKey());
            try {
                logger.info("set " + setAllGroupsNotDefault.executeUpdate() + " groups as not default");
            } catch (Exception e) {
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                        "Caught Exception on setAllGroupsNotDefault.executeUpdate()");
                throw new PersistenceException("Could not set all other groups default to false");
            }
            session.flush();
        }
    }

    @Override
    public void deleteGroup(OnapPDPGroup group, OnapPDPGroup moveToGroup, String username) throws PolicyDbException {
        logger.debug("deleteGroup(PDPGroup group, PDPGroup moveToGroup, String username) as deleteGroup(" + group + ", "
                + moveToGroup + "," + username + BRACKET_CALLED);
        if (group == null) {
            throw new IllegalArgumentException("PDPGroup group cannot be null");
        }
        if (PolicyDbDao.isNullOrEmpty(username, group.getId())) {
            throw new IllegalArgumentException("group.getId() and and username must not be null or empty");
        }

        if (group.isDefaultGroup()) {
            PolicyLogger.error("The default group " + group.getId() + " was attempted to be deleted. It cannot be.");
            throw new PolicyDbException("You cannot delete the default group.");
        }
        synchronized (emLock) {
            checkBeforeOperationRun();
            Query deleteGroupQuery = session.createQuery(PolicyDbDao.GROUPENTITY_SELECT);
            deleteGroupQuery.setParameter(PolicyDbDao.GROUP_ID, group.getId());
            deleteGroupQuery.setParameter(PolicyDbDao.DELETED, false);
            List<?> deleteGroupQueryList;
            try {
                deleteGroupQueryList = deleteGroupQuery.list();
            } catch (Exception e) {
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                        "Caught Exception trying to check if group exists deleteGroupQuery.getResultList()");
                throw new PersistenceException("Query failed trying to check if group exists");
            }
            if (deleteGroupQueryList.isEmpty()) {
                logger.warn(PolicyDbDao.GROUP_NOT_FOUND + group.getId());
                return;
            } else if (deleteGroupQueryList.size() > 1) {
                PolicyLogger.error(PolicyDbDao.DUPLICATE_GROUPID + group.getId() + PolicyDbDao.FOUND_IN_DB_NOT_DEL);
                throw new PersistenceException(
                        PolicyDbDao.DUPLICATE_GROUPID + group.getId() + PolicyDbDao.FOUND_IN_DB_NOT_DEL);
            }

            Query pdpsInGroupQuery =
                    session.createQuery("SELECT p FROM PdpEntity p WHERE p.groupEntity=:group and p.deleted=:deleted");
            pdpsInGroupQuery.setParameter(GROUP, (deleteGroupQueryList.get(0)));
            pdpsInGroupQuery.setParameter(PolicyDbDao.DELETED, false);
            List<?> pdpsInGroupList;
            try {
                pdpsInGroupList = pdpsInGroupQuery.list();
            } catch (Exception e) {
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                        "Caught Exception trying to get PDPs in group on pdpsInGroupQuery.getResultList()");
                throw new PersistenceException("Query failed trying to get PDPs in group");
            }
            if (!pdpsInGroupList.isEmpty()) {
                if (moveToGroup != null) {
                    Query checkMoveToGroupQuery = session
                            .createQuery("SELECT o FROM GroupEntity o WHERE o.groupId=:groupId AND o.deleted=:deleted");
                    checkMoveToGroupQuery.setParameter(PolicyDbDao.GROUP_ID, moveToGroup.getId());
                    checkMoveToGroupQuery.setParameter(PolicyDbDao.DELETED, false);
                    List<?> checkMoveToGroupList;
                    try {
                        checkMoveToGroupList = checkMoveToGroupQuery.list();
                    } catch (Exception e) {
                        PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                                "Caught Exception trying to check if group exists checkMoveToGroupQuery.getResultList");
                        throw new PersistenceException("Query failed trying to check if group exists");
                    }
                    if (checkMoveToGroupList.isEmpty()) {
                        PolicyLogger.error(PolicyDbDao.GROUP_NOT_FOUND + moveToGroup.getId());
                        throw new PersistenceException(PolicyDbDao.GROUP_NOT_FOUND + moveToGroup.getId());
                    } else if (checkMoveToGroupList.size() > 1) {
                        PolicyLogger.error(
                                PolicyDbDao.DUPLICATE_GROUPID + moveToGroup.getId() + PolicyDbDao.FOUND_IN_DB_NOT_DEL);
                        throw new PersistenceException(
                                PolicyDbDao.DUPLICATE_GROUPID + moveToGroup.getId() + PolicyDbDao.FOUND_IN_DB_NOT_DEL);
                    } else {
                        GroupEntity newGroup = (GroupEntity) checkMoveToGroupList.get(0);
                        for (Object pdpObject : pdpsInGroupList) {
                            PdpEntity pdp = (PdpEntity) pdpObject;
                            pdp.setGroup(newGroup);
                            if (!PolicyDbDao.stringEquals(pdp.getModifiedBy(), username)) {
                                pdp.setModifiedBy(username);
                            }
                            try {
                                session.flush();
                                this.newGroupId = newGroup.getGroupId();
                            } catch (PersistenceException e) {
                                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                                        "Caught PersistenceException trying to set pdp group to null on em.flush()");
                                throw new PersistenceException("Query failed trying to set pdp group to ");
                            }
                        }
                    }
                } else {
                    PolicyLogger.error("Group " + group.getId()
                            + " is trying to be delted with PDPs. No group was provided to move them to");
                    throw new PolicyDbException("Group has PDPs. Must provide a group for them to move to");
                }
            }

            // delete group here
            GroupEntity groupToDelete = (GroupEntity) deleteGroupQueryList.get(0);
            groupToDelete.setDeleted(true);
            if (!PolicyDbDao.stringEquals(groupToDelete.getModifiedBy(), username)) {
                groupToDelete.setModifiedBy(username);
            }
            session.flush();
            this.groupId = groupToDelete.getGroupKey();
        }
    }

    @Override
    public StdPDPGroup addPolicyToGroup(String groupIdVar, String policyIdVar, String requestType, String username)
            throws PolicyDbException {
        logger.info(
                "PolicyDBDao: addPolicyToGroup(String groupID, String policyID, String username) as addPolicyToGroup("
                        + groupIdVar + ", " + policyIdVar + "," + requestType + "," + username + BRACKET_CALLED);
        if (PolicyDbDao.isNullOrEmpty(groupIdVar, policyIdVar, requestType)) {
            throw new IllegalArgumentException("groupID, policyID, and username must not be null or empty");
        }
        synchronized (emLock) {
            checkBeforeOperationRun();
            // check if group exists
            Query groupQuery = session.createQuery(PolicyDbDao.GROUPENTITY_SELECT);
            groupQuery.setParameter(PolicyDbDao.GROUP_ID, groupIdVar);
            groupQuery.setParameter(PolicyDbDao.DELETED, false);
            List<?> groupQueryList;
            try {
                groupQueryList = groupQuery.list();
            } catch (Exception e) {
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                        "Caught Exception trying to check if group exists groupQuery.getResultList()");
                throw new PersistenceException("Query failed trying to check if group " + groupIdVar + EXISTS);
            }
            if (groupQueryList.isEmpty()) {
                PolicyLogger.error("Group policy is being added to does not exist with id " + groupIdVar);
                throw new PersistenceException("Group policy is being added to does not exist with id " + groupIdVar);
            } else if (groupQueryList.size() > 1) {
                PolicyLogger.error(PolicyDbDao.DUPLICATE_GROUPID + groupIdVar + PolicyDbDao.FOUND_IN_DB_NOT_DEL);
                throw new PersistenceException(
                        PolicyDbDao.DUPLICATE_GROUPID + groupIdVar + PolicyDbDao.FOUND_IN_DB_NOT_DEL);
            }

            // we need to convert the form of the policy id that is used groups
            // into the form that is used
            // for the database. (com.Config_mypol.1.xml) to (Config_mypol.xml)
            PolicyDbDao policyDbDao = new PolicyDbDao();
            String[] policyNameScopeAndVersion = policyDbDao.getNameScopeAndVersionFromPdpPolicy(policyIdVar);
            if (policyNameScopeAndVersion == null) {
                throw new IllegalArgumentException("Invalid input - policyID must contain name, scope and version");
            }
            Query policyQuery = session.createQuery("SELECT p FROM PolicyEntity p WHERE p.policyName=:policyName "
                    + "AND p.scope=:scope AND p.deleted=:deleted");
            policyQuery.setParameter("policyName", policyNameScopeAndVersion[0]);
            policyQuery.setParameter(PolicyDbDao.SCOPE, policyNameScopeAndVersion[1]);
            policyQuery.setParameter(PolicyDbDao.DELETED, false);
            List<?> policyQueryList;
            try {
                policyQueryList = policyQuery.list();
            } catch (Exception e) {
                logger.debug(e);
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                        "Caught Exception trying to check if policy exists policyQuery.getResultList()");
                throw new PersistenceException(
                        "Query failed trying to check if policy " + policyNameScopeAndVersion[0] + EXISTS);
            }
            if (policyQueryList.isEmpty()) {
                PolicyLogger.error("Policy being added to the group does not exist with policy id "
                        + policyNameScopeAndVersion[0]);
                throw new PersistenceException("Policy being added to the group does not exist with policy id "
                        + policyNameScopeAndVersion[0]);
            } else if (policyQueryList.size() > 1) {
                PolicyLogger.error(
                        PolicyDbDao.DUP_POLICYID + policyNameScopeAndVersion[0] + PolicyDbDao.FOUND_IN_DB_NOT_DEL);
                throw new PersistenceException(
                        PolicyDbDao.DUPLICATE_GROUPID + policyNameScopeAndVersion[0] + PolicyDbDao.FOUND_IN_DB_NOT_DEL);
            }
            logger.info("PolicyDBDao: Getting group and policy from database");
            GroupEntity group = (GroupEntity) groupQueryList.get(0);
            PolicyEntity policy = (PolicyEntity) policyQueryList.get(0);
            Iterator<PolicyEntity> policyIt = group.getPolicies().iterator();
            String policyName = policyDbDao.getPolicyNameAndVersionFromPolicyFileName(policy.getPolicyName())[0];

            logger.info("PolicyDBDao: policyName retrieved is " + policyName);
            try {
                while (policyIt.hasNext()) {
                    PolicyEntity pol = policyIt.next();
                    if (policy.getScope().equals(pol.getScope())
                            && policyDbDao.getPolicyNameAndVersionFromPolicyFileName(pol.getPolicyName())[0]
                                    .equals(policyName)) {
                        policyIt.remove();
                    }
                }
            } catch (Exception e) {
                logger.debug(e);
                PolicyLogger.error("Could not delete old versions for policy " + policy.getPolicyName() + ", ID: "
                        + policy.getPolicyId());
            }
            group.addPolicyToGroup(policy);
            auditPdpOperations(username, policy.getScope() + "." + policy.getPolicyName(), "Push");
            session.flush();

            // After adding policy to the db group we need to make sure the
            // filesytem group is in sync with the db group
            try {
                StdPDPGroup pdpGroup =
                        (StdPDPGroup) PolicyDbDao.getPolicyDbDaoInstance().getPapEngine().getGroup(group.getGroupId());
                return policyDbDao.synchronizeGroupPoliciesInFileSystem(pdpGroup, group);
            } catch (PAPException e) {
                logger.debug(e);
                PolicyLogger.error("PolicyDBDao: Could not synchronize the filesystem group with the database group. "
                        + e.getMessage());
            }
            return null;
        }
    }

    // this means delete pdp not just remove from group
    @Override
    public void removePdpFromGroup(String pdpId, String username) {
        logger.debug("removePdpFromGroup(String pdpID, String username) as removePdpFromGroup(" + pdpId + "," + username
                + BRACKET_CALLED);
        if (PolicyDbDao.isNullOrEmpty(pdpId, username)) {
            throw new IllegalArgumentException("pdpID and username must not be null or empty");
        }
        synchronized (emLock) {
            checkBeforeOperationRun();
            Query pdpQuery = session.createQuery(PolicyDbDao.PDPENTITY_SELECT);
            pdpQuery.setParameter(PolicyDbDao.PDP_ID, pdpId);
            pdpQuery.setParameter(PolicyDbDao.DELETED, false);
            List<?> pdpList;
            try {
                pdpList = pdpQuery.list();
            } catch (Exception e) {
                PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, PolicyDbDao.POLICYDBDAO_VAR,
                        "Caught Exception trying to check if pdp exists  pdpQuery.getResultList()");
                throw new PersistenceException("Query failed trying to check if pdp " + pdpId + EXISTS);
            }
            if (pdpList.size() > 1) {
                PolicyLogger.error("Somehow, more than one pdp with the id " + pdpId + PolicyDbDao.FOUND_IN_DB_NOT_DEL);
                throw new PersistenceException(
                        "Somehow, more than one pdp with the id " + pdpId + PolicyDbDao.FOUND_IN_DB_NOT_DEL);
            } else if (pdpList.isEmpty()) {
                PolicyLogger.error("Pdp being removed does not exist with id " + pdpId);
                return;
            }
            PdpEntity pdp = (PdpEntity) pdpList.get(0);
            if (!isJunit) {
                pdp.setGroup(null);
            }

            if (!PolicyDbDao.stringEquals(pdp.getModifiedBy(), username)) {
                pdp.setModifiedBy(username);
            }
            pdp.setDeleted(true);

            session.flush();
            this.pdpId = pdp.getPdpKey();
        }
    }

    private static String evaluateXPath(String expression, String xml) {
        InputSource source = new InputSource(new StringReader(xml));

        DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
        String description = "";
        try {
            DocumentBuilder db = dbf.newDocumentBuilder();
            Document document = db.parse(source);

            XPathFactory xpathFactory = XPathFactory.newInstance();
            XPath xpath = xpathFactory.newXPath();

            description = xpath.evaluate(expression, document);
        } catch (Exception e) {
            logger.error("Exception Occured while evaluating path" + e);
        }
        return description;
    }

    public static boolean isJunit() {
        return isJunit;
    }

    public static void setJunit(boolean isJunit) {
        PolicyDbDaoTransactionInstance.isJunit = isJunit;
    }

    /**
     * Audit pdp operations.
     *
     * @param username the username
     * @param policyID the policy ID
     * @param action the action
     */
    public void auditPdpOperations(String username, String policyID, String action) {
        PolicyAuditlog log = new PolicyAuditlog();
        log.setUserName(username);
        log.setActions(action);
        log.setPolicyName(policyID);
        log.setDateAndTime(new Date());
        session.save(log);
    }
}