aboutsummaryrefslogtreecommitdiffstats
path: root/mso-catalog-db/src/test/java/org/openecomp/mso/db/catalog/CatalogDatabaseESTestscaffolding.java
blob: c9bf8b40bad61cc744e654722a187fd32b55e186 (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
/**
 * Scaffolding file used to store all the setups needed to run 
 * tests automatically generated by EvoSuite
 * Mon Nov 14 08:18:49 GMT 2016
 */

package org.openecomp.mso.db.catalog;

import org.evosuite.runtime.annotation.EvoSuiteClassExclude;
import org.junit.BeforeClass;
import org.junit.Before;
import org.junit.After;
import org.junit.AfterClass;
import org.evosuite.runtime.sandbox.Sandbox;

@EvoSuiteClassExclude
public class CatalogDatabaseESTestscaffolding {

  @org.junit.Rule 
  public org.evosuite.runtime.vnet.NonFunctionalRequirementRule nfr = new org.evosuite.runtime.vnet.NonFunctionalRequirementRule();

  private static final java.util.Properties defaultProperties = (java.util.Properties) java.lang.System.getProperties().clone(); 

  private org.evosuite.runtime.thread.ThreadStopper threadStopper =  new org.evosuite.runtime.thread.ThreadStopper (org.evosuite.runtime.thread.KillSwitchHandler.getInstance(), 3000);

  @BeforeClass 
  public static void initEvoSuiteFramework() { 
    org.evosuite.runtime.RuntimeSettings.className = "org.openecomp.mso.db.catalog.CatalogDatabase"; 
    org.evosuite.runtime.GuiSupport.initialize(); 
    org.evosuite.runtime.RuntimeSettings.maxNumberOfThreads = 100; 
    org.evosuite.runtime.RuntimeSettings.maxNumberOfIterationsPerLoop = 10000; 
    org.evosuite.runtime.RuntimeSettings.mockSystemIn = true; 
    org.evosuite.runtime.RuntimeSettings.sandboxMode = org.evosuite.runtime.sandbox.Sandbox.SandboxMode.RECOMMENDED; 
    org.evosuite.runtime.sandbox.Sandbox.initializeSecurityManagerForSUT(); 
    org.evosuite.runtime.classhandling.JDKClassResetter.init(); 
    initializeClasses();
    org.evosuite.runtime.Runtime.getInstance().resetRuntime(); 
  } 

  @AfterClass 
  public static void clearEvoSuiteFramework(){ 
    Sandbox.resetDefaultSecurityManager(); 
    java.lang.System.setProperties((java.util.Properties) defaultProperties.clone()); 
  } 

  @Before 
  public void initTestCase(){ 
    threadStopper.storeCurrentThreads();
    threadStopper.startRecordingTime();
    org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().initHandler(); 
    org.evosuite.runtime.sandbox.Sandbox.goingToExecuteSUTCode(); 
     
    org.evosuite.runtime.GuiSupport.setHeadless(); 
    org.evosuite.runtime.Runtime.getInstance().resetRuntime(); 
    org.evosuite.runtime.agent.InstrumentingAgent.activate(); 
  } 

  @After 
  public void doneWithTestCase(){ 
    threadStopper.killAndJoinClientThreads();
    org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().safeExecuteAddedHooks(); 
    org.evosuite.runtime.classhandling.JDKClassResetter.reset(); 
    resetClasses(); 
    org.evosuite.runtime.sandbox.Sandbox.doneWithExecutingSUTCode(); 
    org.evosuite.runtime.agent.InstrumentingAgent.deactivate(); 
    org.evosuite.runtime.GuiSupport.restoreHeadlessMode(); 
  } 


  private static void initializeClasses() {
    org.evosuite.runtime.classhandling.ClassStateSupport.initializeClasses(CatalogDatabaseESTestscaffolding.class.getClassLoader() ,
      "org.hibernate.sql.Alias",
      "org.hibernate.engine.transaction.jta.platform.internal.JtaPlatformInitiator",
      "org.hibernate.type.BasicType",
      "org.hibernate.service.spi.ServiceInitiator",
      "org.hibernate.type.UUIDBinaryType",
      "org.hibernate.type.descriptor.sql.VarbinaryTypeDescriptor",
      "org.hibernate.type.descriptor.java.NClobTypeDescriptor",
      "org.hibernate.type.descriptor.sql.ClobTypeDescriptor$4$1",
      "org.hibernate.service.spi.SessionFactoryServiceRegistry",
      "org.hibernate.Transaction",
      "org.dom4j.tree.NamespaceStack",
      "org.hibernate.annotations.common.reflection.ReflectionManager",
      "org.hibernate.type.descriptor.java.ImmutableMutabilityPlan",
      "org.hibernate.bytecode.spi.ReflectionOptimizer$InstantiationOptimizer",
      "org.hibernate.type.descriptor.java.PrimitiveByteArrayTypeDescriptor",
      "org.hibernate.mapping.FetchProfile",
      "org.hibernate.id.TableHiLoGenerator",
      "org.dom4j.tree.AbstractBranch",
      "org.hibernate.type.NumericBooleanType",
      "org.hibernate.annotations.common.reflection.ClassLoaderDelegate",
      "org.hibernate.NaturalIdLoadAccess",
      "org.hibernate.ScrollableResults",
      "org.dom4j.Namespace",
      "org.hibernate.engine.jdbc.batch.spi.BatchBuilder",
      "org.dom4j.tree.DefaultDocumentType",
      "org.hibernate.service.ConfigLoader",
      "org.hibernate.metamodel.source.MetadataImplementor",
      "org.hibernate.cfg.EJB3NamingStrategy",
      "org.hibernate.boot.registry.classloading.spi.ClassLoaderService",
      "org.hibernate.type.DoubleType",
      "org.hibernate.mapping.Value",
      "org.hibernate.type.descriptor.sql.BlobTypeDescriptor$3$1",
      "org.hibernate.type.descriptor.java.ClassTypeDescriptor",
      "org.hibernate.service.internal.ConcurrentServiceBinding$Node",
      "org.hibernate.CacheMode",
      "org.hibernate.type.ForeignKeyDirection$2",
      "org.hibernate.type.IdentifierBagType",
      "org.hibernate.type.MapType",
      "org.hibernate.cfg.MetadataSourceType",
      "org.hibernate.dialect.Dialect",
      "org.hibernate.boot.registry.selector.StrategyRegistration",
      "org.hibernate.type.ForeignKeyDirection$1",
      "org.hibernate.ScrollMode",
      "org.hibernate.FetchMode",
      "org.hibernate.type.CurrencyType",
      "org.hibernate.persister.collection.CollectionPersister",
      "org.hibernate.service.internal.ConcurrentServiceBinding$Entry",
      "org.hibernate.metamodel.relational.Size",
      "org.hibernate.AssertionFailure",
      "org.hibernate.bytecode.spi.ReflectionOptimizer$AccessOptimizer",
      "org.dom4j.tree.FlyweightComment",
      "org.hibernate.engine.transaction.jta.platform.internal.AbstractJtaPlatform",
      "org.hibernate.type.CustomType",
      "org.hibernate.id.enhanced.TableGenerator",
      "org.hibernate.mapping.RelationalModel",
      "org.hibernate.type.descriptor.sql.ClobTypeDescriptor$5$1",
      "org.hibernate.event.spi.PostUpdateEventListener",
      "org.hibernate.type.descriptor.java.ClobTypeDescriptor",
      "org.hibernate.hql.spi.MultiTableBulkIdStrategy$DeleteHandler",
      "org.dom4j.tree.ConcurrentReaderHashMap$ValueIterator",
      "org.hibernate.cfg.beanvalidation.IntegrationException",
      "org.hibernate.proxy.ProxyFactory",
      "org.hibernate.mapping.Filterable",
      "org.hibernate.tool.hbm2ddl.SingleLineSqlCommandExtractor",
      "org.hibernate.type.SortedSetType",
      "org.hibernate.engine.config.spi.ConfigurationService",
      "org.hibernate.engine.config.internal.ConfigurationServiceInitiator",
      "org.hibernate.persister.spi.PersisterClassResolver",
      "org.hibernate.type.TypeFactory",
      "org.hibernate.boot.registry.classloading.internal.ClassLoaderServiceImpl",
      "org.hibernate.secure.spi.PermissibleAction$1",
      "org.hibernate.cfg.Configuration$CacheHolder",
      "org.hibernate.annotations.common.reflection.Filter",
      "org.hibernate.dialect.Sybase11Dialect",
      "org.hibernate.engine.jdbc.spi.JdbcServices",
      "org.hibernate.type.descriptor.sql.BlobTypeDescriptor$4$1",
      "org.hibernate.engine.transaction.jta.platform.internal.JRun4JtaPlatform",
      "org.hibernate.type.descriptor.java.CalendarDateTypeDescriptor",
      "org.hibernate.type.descriptor.java.CurrencyTypeDescriptor",
      "org.hibernate.type.BlobType",
      "org.hibernate.type.descriptor.java.BlobTypeDescriptor$BlobMutabilityPlan",
      "org.hibernate.annotations.common.reflection.XClass",
      "org.hibernate.dialect.PostgresPlusDialect",
      "org.hibernate.engine.transaction.jta.platform.internal.JtaSynchronizationStrategy",
      "org.hibernate.type.CharacterArrayType",
      "org.hibernate.metamodel.binding.AttributeBindingContainer",
      "org.hibernate.internal.util.xml.XmlDocument",
      "org.hibernate.engine.jdbc.spi.SqlExceptionHelper",
      "org.hibernate.dialect.DerbyTenSixDialect",
      "org.hibernate.type.descriptor.sql.ClobTypeDescriptor",
      "org.hibernate.hql.spi.MultiTableBulkIdStrategy$UpdateHandler",
      "org.hibernate.integrator.spi.IntegratorService",
      "org.hibernate.dialect.SAPDBDialect",
      "org.hibernate.dialect.SybaseAnywhereDialect",
      "org.hibernate.internal.util.ValueHolder",
      "org.hibernate.engine.jdbc.internal.JdbcServicesImpl",
      "org.hibernate.type.descriptor.sql.BigIntTypeDescriptor",
      "org.hibernate.dialect.SybaseASE15Dialect",
      "org.openecomp.mso.db.catalog.utils.MavenLikeVersioning",
      "org.hibernate.engine.jdbc.internal.JdbcServicesInitiator",
      "org.dom4j.tree.ConcurrentReaderHashMap$HashIterator",
      "org.hibernate.type.AnyType",
      "org.dom4j.util.SingletonStrategy",
      "org.hibernate.type.descriptor.java.ByteArrayTypeDescriptor",
      "org.dom4j.tree.BackedList",
      "org.hibernate.service.ServiceRegistryBuilder",
      "org.jboss.logging.JDKLoggerProvider",
      "org.openecomp.mso.logger.MsoLogger$ErrorCode",
      "org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl",
      "org.hibernate.service.internal.ConcurrentServiceBinding",
      "org.hibernate.type.descriptor.sql.ClobTypeDescriptor$2$1",
      "org.hibernate.type.ListType",
      "org.hibernate.type.IntegerType",
      "org.hibernate.dialect.Ingres9Dialect",
      "org.hibernate.dialect.TeradataDialect",
      "org.hibernate.AnnotationException",
      "org.hibernate.proxy.EntityNotFoundDelegate",
      "org.hibernate.type.SetType",
      "org.hibernate.engine.jdbc.connections.internal.ConnectionProviderInitiator",
      "org.hibernate.ReplicationMode$1",
      "org.hibernate.type.NClobType",
      "org.hibernate.service.spi.Configurable",
      "org.hibernate.ReplicationMode$2",
      "org.hibernate.ReplicationMode$3",
      "org.hibernate.engine.transaction.internal.jdbc.JdbcTransactionFactory",
      "org.hibernate.ReplicationMode$4",
      "org.hibernate.type.descriptor.sql.BlobTypeDescriptor$5$1",
      "org.openecomp.mso.db.catalog.beans.Service",
      "org.hibernate.annotations.common.reflection.java.JavaReflectionManager",
      "org.hibernate.tool.hbm2ddl.ImportSqlCommandExtractor",
      "org.hibernate.TransientObjectException",
      "org.hibernate.id.IncrementGenerator",
      "org.openecomp.mso.logger.MsoLogger$Catalog",
      "org.hibernate.annotations.common.reflection.java.generics.TypeEnvironmentFactory",
      "org.hibernate.engine.spi.FilterDefinition",
      "org.hibernate.type.TypeFactory$TypeScopeImpl",
      "org.hibernate.annotations.common.reflection.XMethod",
      "org.hibernate.engine.jdbc.connections.spi.ConnectionProvider",
      "org.hibernate.type.ByteType",
      "org.hibernate.event.spi.AbstractEvent",
      "org.hibernate.integrator.spi.Integrator",
      "org.hibernate.dialect.Oracle8iDialect",
      "org.dom4j.ElementHandler",
      "org.dom4j.tree.DefaultAttribute",
      "org.hibernate.engine.transaction.spi.LocalStatus",
      "org.hibernate.type.descriptor.java.JdbcTimestampTypeDescriptor",
      "org.hibernate.mapping.RootClass",
      "org.hibernate.type.descriptor.sql.ClobTypeDescriptor$3$1",
      "org.hibernate.engine.loading.internal.CollectionLoadContext",
      "org.hibernate.engine.transaction.jta.platform.internal.WebSphereExtendedJtaPlatform",
      "org.hibernate.type.descriptor.sql.DoubleTypeDescriptor",
      "org.hibernate.type.CompositeCustomType",
      "org.hibernate.boot.registry.selector.spi.StrategySelectionException",
      "org.hibernate.dialect.JDataStoreDialect",
      "org.hibernate.annotations.common.util.impl.Log_$logger",
      "org.dom4j.rule.Pattern",
      "org.openecomp.mso.db.catalog.beans.HeatFiles",
      "org.hibernate.dialect.PointbaseDialect",
      "org.hibernate.dialect.DerbyDialect",
      "org.hibernate.event.internal.EntityCopyNotAllowedObserver",
      "org.hibernate.id.SelectGenerator",
      "org.hibernate.dialect.TimesTenDialect",
      "org.hibernate.internal.util.xml.ErrorLogger",
      "org.hibernate.id.insert.InsertGeneratedIdentifierDelegate",
      "org.dom4j.tree.AbstractComment",
      "org.hibernate.MultiTenancyStrategy",
      "org.dom4j.Branch",
      "org.jboss.logging.DelegatingBasicLogger",
      "org.hibernate.type.ShortType",
      "org.hibernate.service.StandardServiceInitiators",
      "org.hibernate.type.descriptor.java.JavaTypeDescriptorRegistry",
      "org.hibernate.type.descriptor.sql.NCharTypeDescriptor",
      "org.hibernate.service.spi.Manageable",
      "org.hibernate.bytecode.internal.javassist.BytecodeProviderImpl",
      "org.hibernate.metamodel.domain.Type",
      "org.dom4j.XPath",
      "org.hibernate.type.VersionType",
      "org.hibernate.integrator.internal.IntegratorServiceImpl",
      "org.hibernate.dialect.Ingres10Dialect",
      "org.hibernate.engine.jdbc.connections.internal.DatasourceConnectionProviderImpl",
      "org.hibernate.type.descriptor.java.JdbcTimestampTypeDescriptor$TimestampMutabilityPlan",
      "org.hibernate.type.AdaptedImmutableType",
      "org.hibernate.type.TypeResolver",
      "org.hibernate.type.descriptor.java.TimeZoneTypeDescriptor",
      "org.hibernate.type.BinaryType",
      "org.hibernate.bytecode.spi.BytecodeProvider",
      "org.hibernate.SynchronizeableQuery",
      "org.hibernate.engine.jdbc.spi.ExtractedDatabaseMetaData",
      "org.hibernate.metamodel.binding.EntityBinding",
      "org.hibernate.type.descriptor.java.CharacterTypeDescriptor",
      "org.hibernate.event.spi.EventSource",
      "org.hibernate.id.IntegralDataTypeHolder",
      "org.dom4j.tree.DefaultText",
      "org.hibernate.engine.jdbc.dialect.internal.DialectResolverInitiator",
      "org.hibernate.type.ManyToOneType",
      "org.hibernate.engine.transaction.jta.platform.internal.JOTMJtaPlatform",
      "org.hibernate.engine.jdbc.LobCreationContext",
      "org.hibernate.engine.transaction.jta.platform.internal.JOnASJtaPlatform",
      "org.hibernate.id.enhanced.SequenceStyleGenerator",
      "org.hibernate.tuple.entity.DynamicMapEntityTuplizer",
      "org.dom4j.tree.ConcurrentReaderHashMap$KeyIterator",
      "com.att.eelf.i18n.EELFResolvableErrorEnum",
      "org.hibernate.LockOptions",
      "org.hibernate.type.descriptor.sql.TinyIntTypeDescriptor",
      "org.hibernate.cache.internal.CollectionCacheInvalidator",
      "org.hibernate.dialect.AbstractTransactSQLDialect",
      "org.hibernate.annotations.common.reflection.XAnnotatedElement",
      "org.hibernate.type.descriptor.sql.ClobTypeDescriptor$5",
      "org.hibernate.type.descriptor.sql.ClobTypeDescriptor$4",
      "org.hibernate.type.descriptor.sql.ClobTypeDescriptor$3",
      "org.hibernate.service.spi.ServiceContributor",
      "org.hibernate.type.descriptor.sql.ClobTypeDescriptor$2",
      "org.hibernate.jdbc.WorkExecutorVisitable",
      "org.hibernate.service.spi.ServiceRegistryAwareService",
      "org.hibernate.type.descriptor.sql.DecimalTypeDescriptor",
      "org.dom4j.tree.AbstractDocument",
      "org.openecomp.mso.db.catalog.utils.MavenLikeVersioningComparator",
      "org.hibernate.dialect.FirebirdDialect",
      "org.hibernate.id.SequenceIdentityGenerator",
      "org.dom4j.Attribute",
      "org.hibernate.type.descriptor.java.MutabilityPlan",
      "org.hibernate.dialect.DerbyTenSevenDialect",
      "org.jboss.logging.AbstractLoggerProvider",
      "org.dom4j.Document",
      "org.hibernate.boot.registry.BootstrapServiceRegistryBuilder",
      "org.hibernate.Criteria",
      "org.hibernate.annotations.common.reflection.java.JavaXCollectionType",
      "org.hibernate.event.internal.EntityCopyAllowedLoggedObserver",
      "org.dom4j.tree.ConcurrentReaderHashMap",
      "org.hibernate.SessionEventListener",
      "org.hibernate.dialect.MimerSQLDialect",
      "org.openecomp.mso.db.catalog.beans.VnfResource",
      "com.att.eelf.i18n.EELFResourceManager$RESOURCE_TYPES",
      "org.hibernate.InvalidMappingException",
      "org.hibernate.service.UnknownUnwrapTypeException",
      "org.hibernate.exception.spi.ViolatedConstraintNameExtracter",
      "org.dom4j.tree.AbstractDocumentType",
      "org.hibernate.persister.internal.PersisterFactoryInitiator",
      "org.hibernate.metamodel.Metadata",
      "org.hibernate.engine.transaction.jta.platform.internal.BorlandEnterpriseServerJtaPlatform",
      "org.hibernate.engine.spi.Mapping",
      "org.hibernate.service.Service",
      "org.dom4j.CDATA",
      "org.dom4j.tree.FlyweightText",
      "org.hibernate.type.ObjectType",
      "org.openecomp.mso.db.catalog.CatalogDatabase",
      "org.hibernate.service.spi.ServiceRegistryImplementor",
      "org.hibernate.engine.transaction.jta.platform.spi.JtaPlatformResolver",
      "org.dom4j.tree.ConcurrentReaderHashMap$BarrierLock",
      "org.hibernate.type.descriptor.sql.LongVarbinaryTypeDescriptor",
      "org.hibernate.type.DbTimestampType",
      "org.hibernate.procedure.ProcedureCall",
      "org.hibernate.service.UnknownServiceException",
      "org.hibernate.id.BulkInsertionCapableIdentifierGenerator",
      "org.hibernate.service.spi.Stoppable",
      "org.hibernate.annotations.common.reflection.XProperty",
      "org.hibernate.boot.registry.BootstrapServiceRegistry",
      "org.hibernate.cfg.Configuration$MetadataSourceQueue",
      "org.hibernate.type.descriptor.sql.NVarcharTypeDescriptor",
      "org.hibernate.jdbc.Work",
      "org.hibernate.type.PrimitiveType",
      "org.hibernate.type.descriptor.sql.SmallIntTypeDescriptor",
      "org.hibernate.tuple.entity.PojoEntityTuplizer",
      "org.hibernate.engine.jdbc.dialect.internal.DialectFactoryInitiator",
      "org.hibernate.usertype.UserType",
      "org.hibernate.type.TimeType",
      "org.hibernate.internal.util.xml.XMLHelper",
      "org.hibernate.annotations.common.reflection.MetadataProvider",
      "org.hibernate.cfg.beanvalidation.BeanValidationIntegrator",
      "org.hibernate.tuple.entity.AbstractEntityTuplizer",
      "org.hibernate.service.spi.ServiceBinding$ServiceLifecycleOwner",
      "org.jboss.logging.LoggerProvider",
      "org.hibernate.tool.hbm2ddl.ImportScriptException",
      "org.dom4j.io.SAXReader",
      "org.hibernate.id.IdentityGenerator",
      "org.hibernate.type.ForeignKeyDirection",
      "org.hibernate.persister.entity.Joinable",
      "org.hibernate.type.BigDecimalType",
      "org.hibernate.type.WrapperBinaryType",
      "org.hibernate.internal.util.ConfigHelper",
      "org.hibernate.id.enhanced.AccessCallback",
      "org.dom4j.DocumentType",
      "org.hibernate.dialect.PostgreSQL82Dialect",
      "com.att.eelf.configuration.SLF4jWrapper",
      "org.hibernate.id.Configurable",
      "org.hibernate.id.SequenceGenerator",
      "org.hibernate.dialect.Oracle9iDialect",
      "org.hibernate.cfg.Configuration",
      "org.dom4j.tree.DefaultDocument",
      "org.hibernate.engine.spi.SessionFactoryImplementor",
      "org.jboss.logging.AbstractMdcLoggerProvider",
      "org.hibernate.type.SerializationException",
      "org.hibernate.cfg.annotations.reflection.XMLContext$Default",
      "org.hibernate.type.descriptor.java.CalendarTypeDescriptor$CalendarMutabilityPlan",
      "org.openecomp.mso.logger.MsoLogger",
      "org.hibernate.engine.jndi.spi.JndiService",
      "org.dom4j.tree.ConcurrentReaderHashMap$KeySet",
      "org.hibernate.type.BooleanType",
      "org.hibernate.mapping.Collection",
      "org.hibernate.type.descriptor.sql.TimestampTypeDescriptor",
      "org.hibernate.type.descriptor.sql.BlobTypeDescriptor",
      "org.hibernate.engine.jndi.internal.JndiServiceImpl",
      "org.hibernate.type.descriptor.java.JdbcDateTypeDescriptor",
      "org.hibernate.metamodel.source.BindingContext",
      "org.hibernate.cache.internal.RegionFactoryInitiator",
      "org.openecomp.mso.db.catalog.beans.HeatTemplateParam",
      "org.dom4j.util.SimpleSingleton",
      "org.hibernate.cfg.annotations.reflection.XMLContext",
      "org.hibernate.metamodel.binding.AttributeBinding",
      "org.hibernate.type.CharacterType",
      "org.hibernate.type.FloatType",
      "org.hibernate.annotations.common.reflection.AnnotationReader",
      "org.hibernate.internal.util.xml.XmlInfrastructureException",
      "org.jboss.logging.LoggerProviders$1",
      "org.hibernate.internal.util.xml.XmlDocumentImpl",
      "org.openecomp.mso.db.catalog.beans.HeatEnvironment",
      "org.hibernate.type.descriptor.sql.NClobTypeDescriptor$4$1",
      "org.hibernate.id.factory.IdentifierGeneratorFactory",
      "org.hibernate.type.CollectionType",
      "org.hibernate.type.descriptor.java.ByteTypeDescriptor",
      "org.hibernate.boot.registry.StandardServiceRegistryBuilder",
      "org.hibernate.secure.internal.DisabledJaccServiceImpl",
      "org.hibernate.secure.spi.JaccService",
      "org.hibernate.tuple.Tuplizer",
      "org.hibernate.internal.util.ValueHolder$DeferredInitializer",
      "org.hibernate.internal.util.xml.Origin",
      "org.hibernate.engine.transaction.jta.platform.internal.TransactionManagerAccess",
      "org.hibernate.type.ComponentType",
      "org.hibernate.engine.jdbc.spi.ResultSetWrapper",
      "org.hibernate.service.spi.Startable",
      "org.hibernate.type.DiscriminatorType",
      "org.hibernate.type.descriptor.sql.BooleanTypeDescriptor",
      "org.dom4j.Comment",
      "org.hibernate.service.internal.ProvidedService",
      "org.hibernate.type.descriptor.java.BlobTypeDescriptor",
      "org.hibernate.boot.registry.classloading.internal.ClassLoaderServiceImpl$TcclSafeAggregatedClassLoader",
      "org.jboss.logging.Slf4jLoggerProvider",
      "org.hibernate.type.SortedMapType",
      "org.hibernate.type.LongType",
      "org.hibernate.annotations.common.reflection.MetadataProviderInjector",
      "org.hibernate.type.descriptor.java.LongTypeDescriptor",
      "org.hibernate.id.UUIDGenerationStrategy",
      "org.openecomp.mso.logger.MsoLogger$ResponseCode",
      "org.hibernate.LockMode",
      "org.jboss.logging.Slf4jLocationAwareLogger$1",
      "org.hibernate.boot.registry.selector.spi.StrategySelector",
      "org.hibernate.EntityMode",
      "org.hibernate.dialect.HSQLDialect",
      "org.hibernate.Session$LockRequest",
      "org.hibernate.type.descriptor.java.BigDecimalTypeDescriptor",
      "org.hibernate.engine.transaction.internal.jta.CMTTransactionFactory",
      "org.hibernate.engine.jdbc.batch.internal.BatchBuilderInitiator",
      "org.openecomp.mso.logger.MsoLogger$StatusCode",
      "org.openecomp.mso.db.catalog.beans.VnfComponent",
      "com.att.eelf.configuration.EELFManager",
      "org.dom4j.Text",
      "org.dom4j.tree.AbstractCharacterData",
      "org.hibernate.engine.transaction.jta.platform.internal.ResinJtaPlatform",
      "org.hibernate.service.ServiceRegistry",
      "org.dom4j.io.DOMReader",
      "org.hibernate.type.TimestampType",
      "org.hibernate.persister.internal.PersisterClassResolverInitiator",
      "org.jboss.logging.Logger$Level",
      "org.hibernate.type.NTextType",
      "org.hibernate.UnknownProfileException",
      "org.hibernate.engine.spi.CollectionKey",
      "org.hibernate.type.descriptor.java.JavaTypeDescriptor",
      "org.hibernate.type.descriptor.sql.LongVarcharTypeDescriptor",
      "org.hibernate.secure.spi.GrantedPermission",
      "org.hibernate.type.Type",
      "org.hibernate.engine.jdbc.cursor.internal.RefCursorSupportInitiator",
      "org.hibernate.MappingNotFoundException",
      "org.hibernate.internal.util.collections.JoinedIterator",
      "org.hibernate.jmx.internal.JmxServiceInitiator",
      "org.hibernate.type.descriptor.java.JdbcTimeTypeDescriptor",
      "org.hibernate.type.CustomCollectionType",
      "org.hibernate.type.descriptor.sql.NClobTypeDescriptor$3$1",
      "org.hibernate.event.service.spi.DuplicationStrategy",
      "org.hibernate.type.PostgresUUIDType$PostgresUUIDSqlTypeDescriptor",
      "org.dom4j.io.DispatchHandler",
      "org.hibernate.annotations.common.util.impl.LoggerFactory",
      "org.hibernate.dialect.SQLServer2005Dialect",
      "org.dom4j.Entity",
      "org.hibernate.boot.registry.selector.StrategyRegistrationProvider",
      "org.hibernate.id.PostInsertIdentifierGenerator",
      "org.hibernate.type.descriptor.java.ShortTypeDescriptor",
      "org.hibernate.type.descriptor.sql.NumericTypeDescriptor",
      "org.hibernate.dialect.CUBRIDDialect",
      "org.hibernate.annotations.common.reflection.java.JavaXType",
      "org.hibernate.integrator.spi.ServiceContributingIntegrator",
      "org.hibernate.type.descriptor.java.StringTypeDescriptor",
      "org.dom4j.ProcessingInstruction",
      "org.hibernate.boot.registry.StandardServiceRegistry",
      "org.hibernate.type.descriptor.java.JdbcDateTypeDescriptor$DateMutabilityPlan",
      "org.hibernate.id.IdentifierGenerator",
      "org.hibernate.engine.jdbc.dialect.spi.DialectResolver",
      "org.hibernate.engine.jdbc.spi.SqlExceptionHelper$WarningHandler",
      "org.hibernate.type.OneToOneType",
      "org.hibernate.id.GUIDGenerator",
      "org.hibernate.internal.util.xml.MappingReader$SupportedOrmXsdVersion",
      "org.dom4j.io.ElementStack",
      "org.hibernate.type.descriptor.sql.BlobTypeDescriptor$5",
      "org.hibernate.boot.registry.internal.BootstrapServiceRegistryImpl",
      "org.hibernate.SessionFactory",
      "org.hibernate.type.descriptor.sql.BlobTypeDescriptor$3",
      "org.hibernate.type.descriptor.sql.BlobTypeDescriptor$4",
      "org.hibernate.type.MaterializedClobType",
      "org.hibernate.type.BigIntegerType",
      "org.hibernate.type.descriptor.sql.BlobTypeDescriptor$2",
      "org.hibernate.service.internal.AbstractServiceRegistryImpl",
      "com.att.eelf.i18n.EELFMsgs",
      "org.hibernate.dialect.SybaseASE157Dialect",
      "org.dom4j.tree.AbstractText",
      "org.hibernate.Version",
      "org.hibernate.engine.transaction.jta.platform.internal.WeblogicJtaPlatform",
      "org.hibernate.cache.spi.OptimisticCacheSource",
      "org.hibernate.dialect.SQLServerDialect",
      "org.hibernate.dialect.SybaseDialect",
      "org.hibernate.engine.spi.CascadeStyle",
      "org.dom4j.tree.NamespaceCache",
      "org.hibernate.engine.jdbc.dialect.spi.DialectFactory",
      "org.hibernate.engine.transaction.jta.platform.internal.JtaPlatformResolverInitiator",
      "org.hibernate.internal.util.xml.OriginImpl",
      "org.hibernate.jmx.spi.JmxService",
      "org.hibernate.id.UUIDGenerator",
      "org.hibernate.persister.spi.PersisterFactory",
      "org.hibernate.type.descriptor.sql.NClobTypeDescriptor$2$1",
      "org.hibernate.TypeHelper",
      "org.hibernate.cfg.AvailableSettings",
      "org.hibernate.type.PostgresUUIDType",
      "org.hibernate.dialect.DB2Dialect",
      "org.hibernate.Session",
      "org.hibernate.internal.util.config.ConfigurationHelper",
      "org.dom4j.tree.QNameCache",
      "org.hibernate.SimpleNaturalIdLoadAccess",
      "org.hibernate.engine.transaction.jta.platform.internal.BitronixJtaPlatform",
      "org.jboss.logging.BasicLogger",
      "org.hibernate.type.SpecialOneToOneType",
      "org.hibernate.internal.util.config.ConfigurationException",
      "org.hibernate.metamodel.spi.TypeContributor",
      "org.hibernate.engine.transaction.jta.platform.internal.SunOneJtaPlatform",
      "org.hibernate.engine.jdbc.connections.internal.MultiTenantConnectionProviderInitiator",
      "org.hibernate.cfg.Environment",
      "org.hibernate.hql.spi.TemporaryTableBulkIdStrategy",
      "org.hibernate.type.LocaleType",
      "org.hibernate.boot.registry.internal.StandardServiceRegistryImpl",
      "org.hibernate.type.descriptor.sql.SqlTypeDescriptor",
      "org.dom4j.NodeFilter",
      "org.hibernate.type.descriptor.java.FloatTypeDescriptor",
      "org.hibernate.type.descriptor.java.UrlTypeDescriptor",
      "org.dom4j.tree.DefaultComment",
      "org.hibernate.type.descriptor.java.SerializableTypeDescriptor",
      "org.hibernate.dialect.MySQL5InnoDBDialect",
      "org.hibernate.id.factory.spi.MutableIdentifierGeneratorFactory",
      "org.hibernate.usertype.CompositeUserType",
      "org.hibernate.engine.jdbc.spi.SqlStatementLogger",
      "org.hibernate.mapping.Table",
      "org.hibernate.secure.spi.IntegrationException",
      "org.hibernate.mapping.AuxiliaryDatabaseObject",
      "org.hibernate.annotations.common.reflection.XMember",
      "org.hibernate.type.descriptor.sql.VarcharTypeDescriptor",
      "org.hibernate.type.descriptor.java.PrimitiveCharacterArrayTypeDescriptor",
      "org.hibernate.type.descriptor.java.UUIDTypeDescriptor",
      "org.hibernate.engine.jdbc.spi.ExtractedDatabaseMetaData$SQLStateType",
      "org.openecomp.mso.db.catalog.beans.Recipe",
      "org.hibernate.secure.spi.JaccIntegrator$1",
      "org.hibernate.id.factory.internal.MutableIdentifierGeneratorFactoryInitiator",
      "org.hibernate.cfg.SettingsFactory",
      "org.dom4j.io.SAXContentHandler",
      "org.dom4j.QName",
      "org.hibernate.type.AssociationType",
      "org.hibernate.cfg.ExtendsQueueEntry",
      "org.hibernate.ReplicationMode",
      "org.hibernate.boot.registry.classloading.internal.ClassLoaderServiceImpl$AggregatedClassLoader",
      "org.dom4j.tree.DefaultElement",
      "org.hibernate.engine.transaction.spi.TransactionImplementor",
      "org.hibernate.persister.entity.EntityPersister",
      "org.dom4j.Node",
      "org.hibernate.service.spi.ServiceBinding",
      "org.hibernate.type.BasicTypeRegistry",
      "org.hibernate.internal.util.ValueHolder$1",
      "org.hibernate.dialect.function.SQLFunction",
      "org.hibernate.NonUniqueResultException",
      "org.hibernate.SessionFactoryObserver",
      "org.hibernate.type.descriptor.sql.RealTypeDescriptor",
      "org.hibernate.dialect.PostgreSQL81Dialect",
      "org.hibernate.collection.spi.PersistentCollection",
      "org.hibernate.type.descriptor.sql.DateTypeDescriptor",
      "org.dom4j.tree.AbstractAttribute",
      "org.hibernate.internal.CoreMessageLogger_$logger",
      "org.hibernate.dialect.PostgreSQLDialect",
      "org.hibernate.dialect.MySQLDialect",
      "org.hibernate.internal.jaxb.cfg.JaxbHibernateConfiguration",
      "org.openecomp.mso.db.catalog.beans.VnfRecipe",
      "org.hibernate.engine.transaction.jta.platform.internal.JBossAppServerJtaPlatform",
      "org.hibernate.service.ConfigLoader$1",
      "org.hibernate.type.MaterializedNClobType",
      "org.hibernate.type.IdentifierType",
      "org.hibernate.type.SingleColumnType",
      "org.hibernate.type.descriptor.java.CharacterArrayTypeDescriptor",
      "org.hibernate.SessionBuilder",
      "org.openecomp.mso.db.catalog.beans.NetworkRecipe",
      "org.hibernate.mapping.MetaAttributable",
      "org.hibernate.type.descriptor.java.MutableMutabilityPlan",
      "org.hibernate.secure.spi.JaccPermissionDeclarations",
      "org.hibernate.type.UrlType",
      "org.hibernate.tuple.entity.AbstractEntityTuplizer$MappedIdentifierValueMarshaller",
      "org.hibernate.tuple.component.ComponentMetamodel",
      "org.hibernate.persister.walking.spi.EntityDefinition",
      "org.hibernate.type.YesNoType",
      "org.hibernate.id.AbstractPostInsertGenerator",
      "org.openecomp.mso.db.catalog.beans.VfModule",
      "org.hibernate.annotations.common.reflection.java.JavaXArrayType",
      "org.hibernate.exception.spi.SQLExceptionConverter",
      "org.hibernate.boot.registry.classloading.internal.ClassLoaderServiceImpl$AggregatedClassLoader$1",
      "org.hibernate.type.AbstractStandardBasicType",
      "org.hibernate.hql.spi.QueryTranslatorFactory",
      "org.hibernate.SharedSessionContract",
      "org.hibernate.cfg.Configuration$ObjectNameNormalizerImpl",
      "org.hibernate.annotations.common.reflection.java.JavaXSimpleType",
      "org.hibernate.cfg.ObjectNameNormalizer",
      "org.hibernate.service.internal.SessionFactoryServiceRegistryFactoryImpl",
      "org.hibernate.service.internal.ServiceDependencyException",
      "org.hibernate.event.spi.PostDeleteEvent",
      "org.hibernate.type.descriptor.java.BooleanTypeDescriptor",
      "org.hibernate.type.descriptor.sql.FloatTypeDescriptor",
      "org.hibernate.type.descriptor.sql.SqlTypeDescriptorRegistry",
      "org.hibernate.dialect.InformixDialect",
      "org.jboss.logging.Logger",
      "org.hibernate.cfg.Configuration$1",
      "org.hibernate.tuple.entity.EntityMetamodel$GenerationStrategyPair",
      "org.hibernate.type.ImageType",
      "org.hibernate.id.factory.internal.DefaultIdentifierGeneratorFactory",
      "org.hibernate.engine.transaction.jta.platform.internal.JBossStandAloneJtaPlatform",
      "org.hibernate.cfg.Configuration$3",
      "org.hibernate.engine.jndi.JndiNameException",
      "org.hibernate.dialect.PostgreSQL9Dialect",
      "org.hibernate.type.CompositeType",
      "org.openecomp.mso.db.catalog.beans.HeatNestedTemplate",
      "org.dom4j.ElementPath",
      "org.jboss.logging.LoggerProviders",
      "org.hibernate.type.descriptor.WrapperOptions",
      "org.hibernate.id.SequenceHiLoGenerator",
      "org.hibernate.type.descriptor.java.NClobTypeDescriptor$NClobMutabilityPlan",
      "org.hibernate.type.descriptor.sql.NClobTypeDescriptor$3",
      "org.openecomp.mso.db.catalog.beans.VfModuleToHeatFiles",
      "org.openecomp.mso.entity.MsoRequest",
      "org.hibernate.type.descriptor.sql.NClobTypeDescriptor$2",
      "org.hibernate.type.descriptor.sql.NClobTypeDescriptor$4",
      "org.hibernate.secure.spi.JaccIntegrator",
      "org.hibernate.tuple.entity.EntityMetamodel",
      "org.hibernate.dialect.DerbyTenFiveDialect",
      "org.hibernate.tuple.Instantiator",
      "org.hibernate.type.descriptor.java.AbstractTypeDescriptor",
      "org.hibernate.type.BagType",
      "org.hibernate.type.CalendarType",
      "org.hibernate.internal.util.ClassLoaderHelper",
      "org.hibernate.BasicQueryContract",
      "org.hibernate.CallbackException",
      "org.hibernate.engine.jdbc.LobCreator",
      "org.hibernate.type.descriptor.java.DoubleTypeDescriptor",
      "org.dom4j.Element",
      "org.hibernate.dialect.FrontBaseDialect",
      "org.hibernate.boot.registry.classloading.spi.ClassLoadingException",
      "org.hibernate.tuple.entity.EntityTuplizerFactory",
      "org.hibernate.stat.SessionStatistics",
      "org.hibernate.type.OrderedSetType",
      "org.hibernate.mapping.TableOwner",
      "org.hibernate.type.descriptor.ValueBinder",
      "org.hibernate.bytecode.spi.ReflectionOptimizer",
      "org.hibernate.boot.registry.classloading.internal.ClassLoaderServiceImpl$Work",
      "org.hibernate.dialect.DB2390Dialect",
      "org.hibernate.engine.jdbc.connections.internal.UserSuppliedConnectionProviderImpl",
      "org.hibernate.type.descriptor.java.LocaleTypeDescriptor",
      "org.hibernate.engine.transaction.jta.platform.internal.WebSphereJtaPlatform",
      "org.hibernate.engine.jdbc.spi.JdbcConnectionAccess",
      "org.hibernate.SharedSessionBuilder",
      "org.openecomp.mso.db.catalog.beans.NetworkResource",
      "org.hibernate.type.TimeZoneType",
      "org.hibernate.mapping.PersistentClass",
      "org.hibernate.tuple.entity.EntityTuplizer",
      "org.hibernate.engine.transaction.jta.platform.internal.OC4JJtaPlatform",
      "org.hibernate.type.descriptor.java.ClobTypeDescriptor$ClobMutabilityPlan",
      "org.hibernate.Query",
      "org.hibernate.annotations.common.reflection.java.generics.TypeEnvironment",
      "org.hibernate.internal.util.beans.BeanInfoHelper$BeanInfoDelegate",
      "org.hibernate.event.spi.PostDeleteEventListener",
      "org.jboss.logging.Slf4jLogger",
      "org.hibernate.annotations.common.Version",
      "org.hibernate.EmptyInterceptor",
      "org.hibernate.type.descriptor.sql.TimeTypeDescriptor",
      "org.hibernate.type.descriptor.java.IntegerTypeDescriptor",
      "org.hibernate.bytecode.spi.ClassTransformer",
      "org.hibernate.id.TableGenerator",
      "org.hibernate.id.Assigned",
      "com.att.eelf.configuration.EELFLogger$Level",
      "org.hibernate.type.ClobType",
      "org.hibernate.id.UUIDHexGenerator",
      "org.hibernate.engine.transaction.internal.jta.JtaTransactionFactory",
      "org.hibernate.id.enhanced.DatabaseStructure",
      "org.hibernate.cache.CacheException",
      "org.hibernate.event.spi.PostUpdateEvent",
      "org.hibernate.type.TypeFactory$1",
      "org.hibernate.HibernateException",
      "org.hibernate.engine.jdbc.connections.spi.MultiTenantConnectionProvider",
      "org.hibernate.cfg.annotations.reflection.JPAMetadataProvider",
      "org.hibernate.cfg.NamingStrategy",
      "org.hibernate.dialect.H2Dialect",
      "org.hibernate.type.descriptor.sql.BasicBinder",
      "org.hibernate.dialect.IngresDialect",
      "org.hibernate.persister.walking.spi.CollectionDefinition",
      "org.dom4j.tree.ConcurrentReaderHashMap$Entry",
      "org.hibernate.tool.hbm2ddl.DatabaseMetadata",
      "org.hibernate.id.ForeignGenerator",
      "org.hibernate.type.EmbeddedComponentType",
      "org.hibernate.event.spi.PostInsertEvent",
      "com.att.eelf.configuration.EELFLogger",
      "org.hibernate.type.descriptor.sql.LongNVarcharTypeDescriptor",
      "org.hibernate.type.descriptor.sql.CharTypeDescriptor",
      "org.hibernate.type.descriptor.sql.IntegerTypeDescriptor",
      "org.hibernate.type.CharacterNCharType",
      "org.hibernate.internal.util.xml.DTDEntityResolver",
      "org.dom4j.io.JAXPHelper",
      "org.hibernate.cache.spi.RegionFactory",
      "org.dom4j.tree.FlyweightAttribute",
      "org.hibernate.engine.jndi.internal.JndiServiceInitiator",
      "org.dom4j.IllegalAddException",
      "org.hibernate.type.descriptor.java.BigIntegerTypeDescriptor",
      "org.hibernate.annotations.common.reflection.XPackage",
      "org.hibernate.persister.walking.spi.AttributeSource",
      "org.hibernate.internal.util.compare.ComparableComparator",
      "org.dom4j.tree.AbstractNode",
      "org.dom4j.Visitor",
      "org.hibernate.type.XmlRepresentableType",
      "org.dom4j.CharacterData",
      "org.hibernate.type.AbstractSingleColumnStandardBasicType",
      "org.hibernate.bytecode.spi.ProxyFactoryFactory",
      "org.hibernate.cfg.Mappings",
      "org.hibernate.engine.transaction.jta.platform.spi.JtaPlatform",
      "org.hibernate.type.DateType",
      "org.hibernate.type.descriptor.java.UUIDTypeDescriptor$ValueTransformer",
      "org.hibernate.cfg.RecoverableException",
      "org.hibernate.type.SerializableType",
      "org.hibernate.bytecode.buildtime.spi.ClassFilter",
      "org.hibernate.internal.util.xml.MappingReader",
      "org.hibernate.dialect.DB2400Dialect",
      "org.openecomp.mso.db.catalog.beans.HeatTemplate",
      "org.hibernate.hql.spi.PersistentTableBulkIdStrategy",
      "org.hibernate.engine.jdbc.spi.SchemaNameResolver",
      "org.hibernate.annotations.common.util.StandardClassLoaderDelegateImpl",
      "org.hibernate.IdentifierLoadAccess",
      "org.hibernate.annotations.common.reflection.ClassLoadingException",
      "org.hibernate.metamodel.domain.AttributeContainer",
      "org.hibernate.type.UUIDCharType",
      "org.hibernate.transform.ResultTransformer",
      "org.hibernate.cache.internal.NoCachingRegionFactory",
      "org.hibernate.service.spi.ServiceException",
      "org.hibernate.internal.util.collections.CollectionHelper",
      "org.hibernate.exception.spi.SQLExceptionConversionDelegate",
      "org.hibernate.secure.spi.PermissibleAction",
      "org.openecomp.mso.db.catalog.beans.VnfComponentsRecipe",
      "org.hibernate.annotations.common.reflection.java.JavaMetadataProvider",
      "org.hibernate.Filter",
      "org.hibernate.context.spi.CurrentTenantIdentifierResolver",
      "org.hibernate.SQLQuery",
      "org.hibernate.Interceptor",
      "org.dom4j.tree.ConcurrentReaderHashMap$Values",
      "org.dom4j.io.SAXHelper",
      "org.hibernate.engine.jndi.JndiException",
      "org.hibernate.dialect.MckoiDialect",
      "org.hibernate.engine.transaction.internal.TransactionFactoryInitiator",
      "org.hibernate.LobHelper",
      "org.hibernate.exception.spi.ConversionContext",
      "org.hibernate.JDBCException",
      "org.hibernate.engine.jdbc.dialect.internal.DialectResolverSet",
      "org.hibernate.type.TextType",
      "org.hibernate.type.descriptor.sql.NClobTypeDescriptor",
      "org.hibernate.dialect.Oracle10gDialect",
      "org.hibernate.engine.jdbc.cursor.spi.RefCursorSupport",
      "org.hibernate.boot.registry.selector.internal.StrategySelectorBuilder",
      "org.hibernate.id.AbstractUUIDGenerator",
      "org.openecomp.mso.db.catalog.beans.ServiceRecipe",
      "org.hibernate.hql.spi.MultiTableBulkIdStrategy",
      "org.hibernate.type.LiteralType",
      "org.hibernate.service.internal.SessionFactoryServiceRegistryFactoryInitiator",
      "org.hibernate.service.spi.SessionFactoryServiceRegistryFactory",
      "org.hibernate.metamodel.spi.TypeContributions",
      "org.hibernate.service.spi.InjectService",
      "org.hibernate.engine.loading.internal.EntityLoadContext",
      "org.hibernate.type.ClassType",
      "org.hibernate.type.TypeFactory$TypeScope",
      "org.hibernate.type.descriptor.java.ArrayMutabilityPlan",
      "org.hibernate.bytecode.buildtime.spi.FieldFilter",
      "org.hibernate.cache.spi.QueryCacheFactory",
      "org.hibernate.criterion.CriteriaSpecification",
      "org.hibernate.type.ArrayType",
      "org.hibernate.type.CharArrayType",
      "org.hibernate.engine.transaction.jta.platform.internal.OrionJtaPlatform",
      "org.jboss.logging.Logger$1",
      "org.hibernate.boot.registry.selector.internal.StrategySelectorImpl",
      "org.hibernate.type.ProcedureParameterExtractionAware",
      "org.hibernate.MappingException",
      "org.hibernate.mapping.Fetchable",
      "org.hibernate.type.AbstractType",
      "org.hibernate.dialect.MySQL5Dialect",
      "org.hibernate.engine.spi.SessionImplementor",
      "org.hibernate.dialect.InterbaseDialect",
      "org.hibernate.type.descriptor.sql.BinaryTypeDescriptor",
      "org.dom4j.tree.ConcurrentReaderHashMap$1",
      "org.hibernate.type.TrueFalseType",
      "org.hibernate.event.spi.PostInsertEventListener",
      "org.hibernate.type.StringRepresentableType",
      "org.hibernate.internal.CoreMessageLogger",
      "org.hibernate.tuple.InDatabaseValueGenerationStrategy",
      "org.hibernate.dialect.Cache71Dialect",
      "org.hibernate.secure.spi.PermissionCheckEntityInformation",
      "org.hibernate.type.descriptor.java.JdbcTimeTypeDescriptor$TimeMutabilityPlan",
      "org.hibernate.tuple.InMemoryValueGenerationStrategy",
      "org.hibernate.type.EntityType",
      "org.hibernate.event.internal.EntityCopyAllowedObserver",
      "org.dom4j.tree.AbstractElement",
      "org.hibernate.dialect.ProgressDialect",
      "org.hibernate.cfg.Settings",
      "org.dom4j.DocumentFactory",
      "org.hibernate.tool.hbm2ddl.ImportSqlCommandExtractorInitiator",
      "org.dom4j.DocumentException",
      "org.hibernate.type.descriptor.java.SerializableTypeDescriptor$SerializableMutabilityPlan",
      "org.dom4j.tree.ConcurrentReaderHashMap$EntrySet",
      "org.hibernate.type.CalendarDateType",
      "com.att.eelf.i18n.EELFResourceManager",
      "org.hibernate.type.StringType",
      "org.openecomp.mso.logger.MessageEnum",
      "org.jboss.logging.Slf4jLocationAwareLogger",
      "org.hibernate.type.StringNVarcharType",
      "org.hibernate.engine.transaction.spi.TransactionFactory",
      "org.hibernate.cfg.AttributeConverterDefinition",
      "org.hibernate.FlushMode",
      "org.hibernate.type.descriptor.sql.BlobTypeDescriptor$2$1",
      "org.hibernate.type.MaterializedBlobType",
      "org.hibernate.event.spi.EntityCopyObserver",
      "org.hibernate.cfg.EJB3DTDEntityResolver",
      "org.hibernate.annotations.common.util.impl.Log",
      "org.hibernate.dialect.SQLServer2008Dialect",
      "org.hibernate.engine.jdbc.dialect.spi.DialectResolutionInfoSource",
      "org.hibernate.type.descriptor.java.CalendarTypeDescriptor",
      "org.hibernate.type.descriptor.ValueExtractor",
      "com.att.eelf.i18n.EELFResourceManager$1",
      "org.hibernate.service.spi.Wrapped",
      "org.hibernate.bytecode.spi.EntityInstrumentationMetadata",
      "org.hibernate.id.PersistentIdentifierGenerator",
      "org.hibernate.internal.CoreLogging",
      "org.hibernate.type.OrderedMapType",
      "org.hibernate.jdbc.ReturningWork",
      "org.hibernate.metamodel.relational.Size$LobMultiplier",
      "org.hibernate.boot.registry.StandardServiceInitiator"
    );
  } 

  private static void resetClasses() {
    org.evosuite.runtime.classhandling.ClassResetter.getInstance().setClassLoader(CatalogDatabaseESTestscaffolding.class.getClassLoader());

    org.evosuite.runtime.classhandling.ClassStateSupport.resetClasses(
      "com.att.eelf.i18n.EELFResourceManager",
      "org.openecomp.mso.logger.MessageEnum",
      "org.openecomp.mso.logger.MsoLogger$Catalog",
      "org.openecomp.mso.logger.MsoLogger$ResponseCode",
      "org.openecomp.mso.logger.MsoLogger$StatusCode",
      "org.openecomp.mso.logger.MsoLogger$ErrorCode",
      "org.openecomp.mso.logger.MsoLogger",
      "com.att.eelf.i18n.EELFMsgs",
      "com.att.eelf.i18n.EELFResourceManager$RESOURCE_TYPES",
      "com.att.eelf.configuration.EELFLogger$Level",
      "com.att.eelf.configuration.EELFManager",
      "org.openecomp.mso.db.catalog.CatalogDatabase",
      "org.openecomp.mso.db.catalog.beans.VnfComponent",
      "org.openecomp.mso.db.catalog.beans.HeatTemplate",
      "org.openecomp.mso.db.catalog.beans.HeatNestedTemplate",
      "org.openecomp.mso.db.catalog.beans.VfModuleToHeatFiles",
      "org.jboss.logging.Logger",
      "org.jboss.logging.DelegatingBasicLogger",
      "org.hibernate.internal.CoreMessageLogger_$logger",
      "org.jboss.logging.Slf4jLocationAwareLogger",
      "org.jboss.logging.Logger$Level",
      "org.jboss.logging.Slf4jLocationAwareLogger$1",
      "org.jboss.logging.LoggerProviders",
      "org.hibernate.cfg.MetadataSourceType",
      "org.hibernate.cfg.Configuration",
      "org.hibernate.cfg.SettingsFactory",
      "org.hibernate.type.TypeResolver",
      "org.hibernate.type.BasicTypeRegistry",
      "org.hibernate.metamodel.relational.Size",
      "org.hibernate.metamodel.relational.Size$LobMultiplier",
      "org.hibernate.type.AbstractStandardBasicType",
      "org.hibernate.type.AbstractSingleColumnStandardBasicType",
      "org.hibernate.type.descriptor.sql.SqlTypeDescriptorRegistry",
      "org.hibernate.type.descriptor.sql.BooleanTypeDescriptor",
      "org.hibernate.type.descriptor.java.AbstractTypeDescriptor",
      "org.hibernate.type.descriptor.java.ImmutableMutabilityPlan",
      "org.hibernate.internal.util.compare.ComparableComparator",
      "org.hibernate.type.descriptor.java.JavaTypeDescriptorRegistry",
      "org.hibernate.type.descriptor.java.BooleanTypeDescriptor",
      "org.hibernate.type.BooleanType",
      "org.hibernate.type.descriptor.sql.IntegerTypeDescriptor",
      "org.hibernate.type.NumericBooleanType",
      "org.hibernate.type.descriptor.sql.VarcharTypeDescriptor",
      "org.hibernate.type.descriptor.sql.CharTypeDescriptor",
      "org.hibernate.type.TrueFalseType",
      "org.hibernate.type.YesNoType",
      "org.hibernate.type.descriptor.sql.TinyIntTypeDescriptor",
      "org.hibernate.type.descriptor.java.ByteTypeDescriptor",
      "org.hibernate.type.ByteType",
      "org.hibernate.type.descriptor.java.CharacterTypeDescriptor",
      "org.hibernate.type.CharacterType",
      "org.hibernate.type.descriptor.sql.SmallIntTypeDescriptor",
      "org.hibernate.type.descriptor.java.ShortTypeDescriptor",
      "org.hibernate.type.ShortType",
      "org.hibernate.type.descriptor.java.IntegerTypeDescriptor",
      "org.hibernate.type.IntegerType",
      "org.hibernate.type.descriptor.sql.BigIntTypeDescriptor",
      "org.hibernate.type.descriptor.java.LongTypeDescriptor",
      "org.hibernate.type.LongType",
      "org.hibernate.type.descriptor.sql.RealTypeDescriptor",
      "org.hibernate.type.descriptor.sql.FloatTypeDescriptor",
      "org.hibernate.type.descriptor.java.FloatTypeDescriptor",
      "org.hibernate.type.FloatType",
      "org.hibernate.type.descriptor.sql.DoubleTypeDescriptor",
      "org.hibernate.type.descriptor.java.DoubleTypeDescriptor",
      "org.hibernate.type.DoubleType",
      "org.hibernate.type.descriptor.sql.DecimalTypeDescriptor",
      "org.hibernate.type.descriptor.sql.NumericTypeDescriptor",
      "org.hibernate.type.descriptor.java.BigDecimalTypeDescriptor",
      "org.hibernate.type.BigDecimalType",
      "org.hibernate.type.descriptor.java.BigIntegerTypeDescriptor",
      "org.hibernate.type.BigIntegerType",
      "org.hibernate.type.descriptor.java.StringTypeDescriptor",
      "org.hibernate.type.StringType",
      "org.hibernate.type.descriptor.sql.NVarcharTypeDescriptor",
      "org.hibernate.type.StringNVarcharType",
      "org.hibernate.type.descriptor.sql.NCharTypeDescriptor",
      "org.hibernate.type.CharacterNCharType",
      "org.hibernate.type.descriptor.java.UrlTypeDescriptor",
      "org.hibernate.type.UrlType",
      "org.hibernate.type.descriptor.sql.DateTypeDescriptor",
      "org.hibernate.type.descriptor.java.MutableMutabilityPlan",
      "org.hibernate.type.descriptor.java.JdbcDateTypeDescriptor$DateMutabilityPlan",
      "org.hibernate.type.descriptor.java.JdbcDateTypeDescriptor",
      "org.hibernate.type.DateType",
      "org.hibernate.type.descriptor.sql.TimeTypeDescriptor",
      "org.hibernate.type.descriptor.java.JdbcTimeTypeDescriptor$TimeMutabilityPlan",
      "org.hibernate.type.descriptor.java.JdbcTimeTypeDescriptor",
      "org.hibernate.type.TimeType",
      "org.hibernate.type.descriptor.sql.TimestampTypeDescriptor",
      "org.hibernate.type.descriptor.java.JdbcTimestampTypeDescriptor$TimestampMutabilityPlan",
      "org.hibernate.type.descriptor.java.JdbcTimestampTypeDescriptor",
      "org.hibernate.type.TimestampType",
      "org.hibernate.type.DbTimestampType",
      "org.hibernate.type.descriptor.java.CalendarTypeDescriptor$CalendarMutabilityPlan",
      "org.hibernate.type.descriptor.java.CalendarTypeDescriptor",
      "org.hibernate.type.CalendarType",
      "org.hibernate.type.descriptor.java.CalendarDateTypeDescriptor",
      "org.hibernate.type.CalendarDateType",
      "org.hibernate.type.descriptor.java.LocaleTypeDescriptor",
      "org.hibernate.type.LocaleType",
      "org.hibernate.type.descriptor.java.CurrencyTypeDescriptor",
      "org.hibernate.type.CurrencyType",
      "org.hibernate.type.descriptor.java.TimeZoneTypeDescriptor",
      "org.hibernate.type.TimeZoneType",
      "org.hibernate.type.descriptor.java.ClassTypeDescriptor",
      "org.hibernate.type.ClassType",
      "org.hibernate.type.descriptor.sql.VarbinaryTypeDescriptor",
      "org.hibernate.type.descriptor.sql.BinaryTypeDescriptor",
      "org.hibernate.type.descriptor.java.UUIDTypeDescriptor",
      "org.hibernate.type.UUIDBinaryType",
      "org.hibernate.type.UUIDCharType",
      "org.hibernate.type.PostgresUUIDType$PostgresUUIDSqlTypeDescriptor",
      "org.hibernate.type.PostgresUUIDType",
      "org.hibernate.type.descriptor.java.ArrayMutabilityPlan",
      "org.hibernate.type.descriptor.java.PrimitiveByteArrayTypeDescriptor",
      "org.hibernate.type.BinaryType",
      "org.hibernate.type.descriptor.java.ByteArrayTypeDescriptor",
      "org.hibernate.type.WrapperBinaryType",
      "org.hibernate.type.descriptor.sql.LongVarbinaryTypeDescriptor",
      "org.hibernate.type.ImageType",
      "org.hibernate.type.descriptor.java.PrimitiveCharacterArrayTypeDescriptor",
      "org.hibernate.type.CharArrayType",
      "org.hibernate.type.descriptor.java.CharacterArrayTypeDescriptor",
      "org.hibernate.type.CharacterArrayType",
      "org.hibernate.type.descriptor.sql.LongVarcharTypeDescriptor",
      "org.hibernate.type.TextType",
      "org.hibernate.type.descriptor.sql.LongNVarcharTypeDescriptor",
      "org.hibernate.type.NTextType",
      "org.hibernate.type.descriptor.sql.BlobTypeDescriptor$2",
      "org.hibernate.type.descriptor.sql.BlobTypeDescriptor$3",
      "org.hibernate.type.descriptor.sql.BlobTypeDescriptor$4",
      "org.hibernate.type.descriptor.sql.BlobTypeDescriptor$5",
      "org.hibernate.type.descriptor.sql.BlobTypeDescriptor",
      "org.hibernate.type.descriptor.java.BlobTypeDescriptor$BlobMutabilityPlan",
      "org.hibernate.type.descriptor.java.BlobTypeDescriptor",
      "org.hibernate.type.BlobType",
      "org.hibernate.type.MaterializedBlobType",
      "org.hibernate.type.descriptor.sql.ClobTypeDescriptor$2",
      "org.hibernate.type.descriptor.sql.ClobTypeDescriptor$3",
      "org.hibernate.type.descriptor.sql.ClobTypeDescriptor$4",
      "org.hibernate.type.descriptor.sql.ClobTypeDescriptor$5",
      "org.hibernate.type.descriptor.sql.ClobTypeDescriptor",
      "org.hibernate.type.descriptor.java.ClobTypeDescriptor$ClobMutabilityPlan",
      "org.hibernate.type.descriptor.java.ClobTypeDescriptor",
      "org.hibernate.type.ClobType",
      "org.hibernate.type.descriptor.sql.NClobTypeDescriptor$2",
      "org.hibernate.type.descriptor.sql.NClobTypeDescriptor$3",
      "org.hibernate.type.descriptor.sql.NClobTypeDescriptor$4",
      "org.hibernate.type.descriptor.sql.NClobTypeDescriptor",
      "org.hibernate.type.descriptor.java.NClobTypeDescriptor$NClobMutabilityPlan",
      "org.hibernate.type.descriptor.java.NClobTypeDescriptor",
      "org.hibernate.type.NClobType",
      "org.hibernate.type.MaterializedClobType",
      "org.hibernate.type.MaterializedNClobType",
      "org.hibernate.type.descriptor.java.SerializableTypeDescriptor",
      "org.hibernate.type.descriptor.java.SerializableTypeDescriptor$SerializableMutabilityPlan",
      "org.hibernate.type.SerializableType",
      "org.hibernate.type.AbstractType",
      "org.hibernate.type.AnyType",
      "org.hibernate.type.ObjectType",
      "org.hibernate.type.AdaptedImmutableType",
      "org.hibernate.type.TypeFactory",
      "org.hibernate.type.TypeFactory$TypeScopeImpl",
      "org.hibernate.cfg.Configuration$ObjectNameNormalizerImpl",
      "org.hibernate.cfg.Configuration$MetadataSourceQueue",
      "org.hibernate.cfg.annotations.reflection.JPAMetadataProvider",
      "org.hibernate.cfg.annotations.reflection.XMLContext",
      "org.hibernate.annotations.common.util.impl.Log_$logger",
      "org.hibernate.annotations.common.reflection.java.JavaReflectionManager",
      "org.hibernate.annotations.common.util.StandardClassLoaderDelegateImpl",
      "org.hibernate.internal.util.xml.DTDEntityResolver",
      "org.hibernate.internal.util.xml.XMLHelper",
      "org.hibernate.EmptyInterceptor",
      "org.hibernate.internal.util.ConfigHelper",
      "org.hibernate.internal.util.ClassLoaderHelper",
      "org.hibernate.HibernateException",
      "org.hibernate.internal.util.config.ConfigurationHelper",
      "org.hibernate.bytecode.internal.javassist.BytecodeProviderImpl",
      "org.hibernate.cfg.Environment",
      "org.hibernate.tuple.entity.EntityTuplizerFactory",
      "org.hibernate.EntityMode",
      "org.hibernate.id.factory.internal.DefaultIdentifierGeneratorFactory",
      "org.hibernate.cfg.EJB3NamingStrategy",
      "org.hibernate.cfg.EJB3DTDEntityResolver",
      "org.hibernate.internal.util.xml.ErrorLogger",
      "org.dom4j.io.SAXReader",
      "org.dom4j.io.SAXHelper",
      "org.dom4j.DocumentFactory",
      "org.dom4j.tree.AbstractNode",
      "org.dom4j.tree.AbstractBranch",
      "org.dom4j.tree.AbstractDocument",
      "org.dom4j.tree.DefaultDocument",
      "org.dom4j.tree.AbstractCharacterData",
      "org.dom4j.tree.AbstractComment",
      "org.dom4j.tree.FlyweightComment",
      "org.dom4j.tree.DefaultComment",
      "org.dom4j.tree.AbstractDocumentType",
      "org.dom4j.tree.DefaultDocumentType",
      "org.dom4j.tree.NamespaceCache",
      "org.dom4j.tree.ConcurrentReaderHashMap",
      "org.dom4j.tree.ConcurrentReaderHashMap$BarrierLock",
      "org.dom4j.Namespace",
      "org.dom4j.QName",
      "org.dom4j.tree.AbstractElement",
      "org.dom4j.tree.DefaultElement",
      "org.dom4j.tree.AbstractAttribute",
      "org.dom4j.tree.FlyweightAttribute",
      "org.dom4j.tree.DefaultAttribute",
      "org.dom4j.tree.AbstractText",
      "org.dom4j.tree.FlyweightText",
      "org.dom4j.tree.DefaultText",
      "org.dom4j.tree.BackedList",
      "org.hibernate.internal.util.xml.OriginImpl",
      "org.hibernate.internal.util.xml.MappingReader",
      "org.hibernate.internal.util.xml.XmlDocumentImpl",
      "org.hibernate.boot.registry.StandardServiceRegistryBuilder",
      "org.hibernate.boot.registry.selector.internal.StrategySelectorBuilder",
      "org.hibernate.boot.registry.classloading.internal.ClassLoaderServiceImpl",
      "org.hibernate.integrator.internal.IntegratorServiceImpl",
      "org.hibernate.cfg.beanvalidation.BeanValidationIntegrator",
      "org.hibernate.secure.spi.JaccIntegrator",
      "org.hibernate.cache.internal.CollectionCacheInvalidator",
      "org.hibernate.boot.registry.internal.BootstrapServiceRegistryImpl",
      "org.hibernate.boot.registry.selector.internal.StrategySelectorImpl",
      "org.hibernate.service.spi.ServiceBinding",
      "org.hibernate.engine.config.internal.ConfigurationServiceInitiator",
      "org.hibernate.tool.hbm2ddl.SingleLineSqlCommandExtractor",
      "org.hibernate.tool.hbm2ddl.ImportSqlCommandExtractorInitiator",
      "org.hibernate.engine.jndi.internal.JndiServiceInitiator",
      "org.hibernate.jmx.internal.JmxServiceInitiator",
      "org.hibernate.persister.internal.PersisterClassResolverInitiator",
      "org.hibernate.persister.internal.PersisterFactoryInitiator",
      "org.hibernate.engine.jdbc.connections.internal.ConnectionProviderInitiator",
      "org.hibernate.engine.jdbc.connections.internal.MultiTenantConnectionProviderInitiator",
      "org.hibernate.engine.jdbc.dialect.internal.DialectResolverInitiator",
      "org.hibernate.engine.jdbc.dialect.internal.DialectFactoryInitiator",
      "org.hibernate.engine.jdbc.batch.internal.BatchBuilderInitiator",
      "org.hibernate.engine.jdbc.internal.JdbcServicesInitiator",
      "org.hibernate.engine.jdbc.cursor.internal.RefCursorSupportInitiator",
      "org.hibernate.id.factory.internal.MutableIdentifierGeneratorFactoryInitiator",
      "org.hibernate.engine.transaction.jta.platform.internal.JtaPlatformResolverInitiator",
      "org.hibernate.engine.transaction.jta.platform.internal.JtaPlatformInitiator",
      "org.hibernate.engine.transaction.internal.TransactionFactoryInitiator",
      "org.hibernate.service.internal.SessionFactoryServiceRegistryFactoryInitiator",
      "org.hibernate.cache.internal.RegionFactoryInitiator",
      "org.hibernate.service.StandardServiceInitiators",
      "org.hibernate.service.ConfigLoader",
      "org.hibernate.internal.util.ValueHolder",
      "org.hibernate.secure.internal.DisabledJaccServiceImpl",
      "org.hibernate.service.internal.AbstractServiceRegistryImpl",
      "org.hibernate.service.internal.ConcurrentServiceBinding",
      "org.hibernate.internal.util.collections.CollectionHelper",
      "org.hibernate.engine.jdbc.internal.JdbcServicesImpl",
      "org.hibernate.MultiTenancyStrategy",
      "org.hibernate.engine.jdbc.connections.internal.DatasourceConnectionProviderImpl",
      "org.hibernate.engine.jndi.internal.JndiServiceImpl"
    );
  }
}