aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOCoreBPMN/src/test/java/org/openecomp/mso/bpmn/core/LogTaskESTestscaffolding.java
blob: ab7ee5688432baf25bf1e12f2ef4eb683c536064 (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
/**
 * Scaffolding file used to store all the setups needed to run 
 * tests automatically generated by EvoSuite
 * Mon Nov 14 11:29:34 GMT 2016
 */

package org.openecomp.mso.bpmn.core;

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 LogTaskESTestscaffolding {

  @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.bpmn.core.LogTask"; 
    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(LogTaskESTestscaffolding.class.getClassLoader() ,
      "org.camunda.bpm.engine.impl.persistence.entity.IdentityLinkEntity",
      "org.camunda.bpm.engine.impl.pvm.process.TransitionImpl",
      "org.camunda.bpm.engine.impl.cmmn.execution.CmmnExecution",
      "org.camunda.bpm.engine.impl.context.CaseExecutionContext",
      "org.camunda.bpm.engine.impl.cmmn.transformer.CmmnTransformFactory",
      "org.camunda.bpm.engine.impl.pvm.PvmScope",
      "org.camunda.bpm.engine.delegate.JavaDelegate",
      "org.camunda.bpm.engine.runtime.ProcessInstance",
      "org.camunda.bpm.engine.impl.tree.TreeWalker$WalkCondition",
      "org.camunda.bpm.application.ProcessApplicationReference",
      "org.camunda.bpm.engine.delegate.BpmnModelExecutionContext",
      "org.camunda.bpm.engine.impl.jobexecutor.FailedJobCommandFactory",
      "org.camunda.bpm.engine.delegate.DelegateExecution",
      "org.camunda.bpm.engine.impl.cmmn.model.CmmnIfPartDeclaration",
      "org.camunda.bpm.engine.delegate.CmmnModelExecutionContext",
      "org.camunda.bpm.engine.impl.persistence.entity.util.FormPropertyStartContext",
      "com.att.eelf.i18n.EELFMsgs",
      "org.camunda.bpm.engine.impl.javax.el.ELContext",
      "org.camunda.bpm.engine.impl.core.variable.event.VariableEventDispatcher",
      "org.camunda.bpm.engine.variable.type.ValueType",
      "org.camunda.bpm.engine.impl.interceptor.CommandContextListener",
      "org.camunda.bpm.engine.impl.core.variable.mapping.IoMapping",
      "org.camunda.bpm.engine.impl.cmmn.execution.CmmnCaseInstance",
      "org.camunda.bpm.engine.repository.CaseDefinition",
      "org.camunda.bpm.engine.impl.cmmn.entity.repository.CaseDefinitionEntity",
      "org.camunda.bpm.engine.impl.db.HasDbRevision",
      "org.camunda.bpm.model.bpmn.instance.FlowElement",
      "org.camunda.bpm.engine.delegate.Expression",
      "org.camunda.bpm.engine.variable.type.SerializableValueType",
      "org.camunda.bpm.engine.impl.pvm.PvmActivity",
      "org.camunda.bpm.engine.impl.cfg.BpmnParseFactory",
      "org.camunda.bpm.model.bpmn.instance.BpmnModelElementInstance",
      "org.camunda.bpm.model.cmmn.instance.CmmnModelElementInstance",
      "org.camunda.bpm.engine.impl.pvm.PvmException",
      "org.camunda.bpm.engine.task.DelegationState",
      "org.camunda.bpm.engine.impl.core.variable.VariableMapImpl",
      "org.camunda.bpm.application.ProcessApplicationUnavailableException",
      "org.camunda.bpm.engine.impl.pvm.PvmProcessDefinition",
      "org.camunda.bpm.engine.delegate.DelegateCaseExecution",
      "org.camunda.bpm.engine.impl.cmmn.model.CmmnOnPartDeclaration",
      "org.camunda.bpm.engine.runtime.CaseExecution",
      "org.camunda.bpm.engine.impl.cmmn.model.CmmnCaseDefinition",
      "org.camunda.bpm.engine.impl.core.variable.scope.SimpleVariableStore",
      "org.camunda.bpm.engine.repository.ProcessDefinition",
      "org.camunda.bpm.engine.impl.pvm.process.ScopeImpl",
      "org.camunda.bpm.engine.impl.cfg.ProcessEngineConfigurationImpl",
      "org.camunda.bpm.engine.impl.pvm.runtime.AtomicOperation",
      "org.openecomp.mso.logger.MsoLogger$ErrorCode",
      "org.camunda.bpm.engine.task.IdentityLink",
      "org.camunda.bpm.engine.impl.interceptor.SessionFactory",
      "org.camunda.bpm.engine.delegate.DelegateTask",
      "org.camunda.bpm.engine.impl.pvm.runtime.operation.PvmAtomicOperation",
      "org.camunda.bpm.engine.impl.pvm.process.ActivityStartBehavior",
      "org.camunda.bpm.engine.impl.core.model.CoreActivity",
      "org.camunda.bpm.model.bpmn.BpmnModelInstance",
      "org.camunda.bpm.engine.delegate.VariableScope",
      "org.camunda.bpm.engine.ProcessEngine",
      "org.camunda.bpm.engine.impl.cmmn.execution.CaseExecutionImpl",
      "org.camunda.bpm.engine.impl.interceptor.CommandContext",
      "org.camunda.bpm.engine.impl.variable.listener.CaseVariableListenerInvocation",
      "org.camunda.bpm.engine.impl.cfg.auth.ResourceAuthorizationProvider",
      "org.openecomp.mso.logger.MsoLogger$Catalog",
      "org.camunda.bpm.engine.BadUserRequestException",
      "org.camunda.bpm.engine.impl.persistence.entity.AuthorizationEntity",
      "org.camunda.bpm.engine.impl.context.ExecutionContext",
      "org.camunda.bpm.engine.impl.persistence.entity.TaskEntity",
      "org.camunda.bpm.engine.impl.context.Context",
      "org.camunda.bpm.engine.authorization.Authorization",
      "org.camunda.bpm.engine.ProcessEngineServices",
      "org.camunda.bpm.engine.runtime.Execution",
      "org.camunda.bpm.engine.impl.pvm.runtime.PvmExecutionImpl",
      "org.camunda.bpm.engine.impl.pvm.process.Lane",
      "org.camunda.bpm.engine.impl.pvm.process.ParticipantProcess",
      "org.camunda.bpm.engine.impl.interceptor.CommandExecutor",
      "org.camunda.bpm.engine.delegate.ProcessEngineServicesAware",
      "org.camunda.bpm.engine.ProcessEngineConfiguration",
      "org.camunda.bpm.engine.impl.cmmn.model.CmmnActivity",
      "org.camunda.bpm.engine.impl.util.BitMaskUtil",
      "org.camunda.bpm.engine.impl.pvm.ReadOnlyProcessDefinition",
      "org.camunda.bpm.engine.impl.cmmn.behavior.CmmnActivityBehavior",
      "org.camunda.bpm.engine.impl.core.variable.event.VariableEvent",
      "org.camunda.bpm.engine.delegate.BaseDelegateExecution",
      "org.camunda.bpm.engine.impl.pvm.PvmExecution",
      "org.camunda.bpm.engine.impl.persistence.entity.ProcessDefinitionEntity",
      "org.camunda.bpm.engine.runtime.VariableInstance",
      "org.camunda.bpm.engine.impl.core.variable.scope.AbstractVariableStore",
      "org.camunda.bpm.engine.runtime.Job",
      "org.camunda.bpm.engine.runtime.Incident",
      "org.camunda.bpm.engine.impl.cmmn.execution.CaseExecutionState$CaseExecutionStateImpl",
      "org.camunda.bpm.model.xml.ModelInstance",
      "org.camunda.bpm.engine.impl.pvm.process.ProcessDefinitionImpl",
      "org.camunda.bpm.engine.impl.cmmn.entity.runtime.CaseExecutionEntity",
      "org.openecomp.mso.entity.MsoRequest",
      "org.camunda.bpm.engine.impl.core.variable.value.NullValueImpl",
      "org.camunda.bpm.engine.impl.pvm.runtime.ExecutionImpl",
      "org.camunda.bpm.model.bpmn.instance.UserTask",
      "org.openecomp.mso.bpmn.core.BadInjectedFieldException",
      "org.camunda.bpm.engine.impl.variable.serializer.ValueFields",
      "org.camunda.bpm.engine.impl.core.operation.AbstractEventAtomicOperation",
      "org.camunda.bpm.engine.impl.task.TaskDecorator",
      "org.camunda.bpm.engine.impl.jobexecutor.JobExecutorContext",
      "org.camunda.bpm.engine.impl.task.delegate.TaskListenerInvocation",
      "org.camunda.bpm.engine.impl.persistence.entity.EventSubscriptionEntity",
      "org.camunda.bpm.model.xml.instance.ModelElementInstance",
      "org.camunda.bpm.engine.ProcessEngineException",
      "org.camunda.bpm.engine.impl.cfg.StandaloneProcessEngineConfiguration",
      "org.camunda.bpm.engine.impl.persistence.entity.SuspensionState$SuspensionStateImpl",
      "org.camunda.bpm.engine.impl.db.DbEntity",
      "org.camunda.bpm.model.bpmn.instance.InteractionNode",
      "org.camunda.bpm.engine.impl.task.TaskDefinition",
      "org.camunda.bpm.engine.impl.pvm.delegate.ActivityExecution",
      "org.camunda.bpm.engine.runtime.EventSubscription",
      "org.camunda.bpm.engine.impl.pvm.runtime.operation.PvmAtomicOperationTransitionDestroyScope",
      "org.camunda.bpm.engine.impl.core.variable.value.UntypedValueImpl",
      "org.camunda.bpm.model.bpmn.instance.Activity",
      "org.camunda.bpm.engine.management.JobDefinition",
      "com.att.eelf.i18n.EELFResolvableErrorEnum",
      "com.att.eelf.configuration.EELFLogger$Level",
      "org.camunda.bpm.engine.impl.pvm.delegate.ActivityBehavior",
      "org.camunda.bpm.engine.impl.core.variable.scope.MapBasedVariableStore",
      "org.camunda.bpm.engine.impl.javax.el.ValueReference",
      "org.camunda.bpm.engine.impl.persistence.entity.JobEntity",
      "org.camunda.bpm.engine.impl.persistence.entity.ByteArrayEntity",
      "org.camunda.bpm.engine.impl.pvm.runtime.ProcessInstanceStartContext",
      "org.camunda.bpm.engine.delegate.DelegateCaseVariableInstance",
      "org.camunda.bpm.engine.impl.pvm.PvmProcessElement",
      "org.camunda.bpm.engine.impl.persistence.entity.ExecutionEntityVariableStore",
      "com.att.eelf.i18n.EELFResourceManager$RESOURCE_TYPES",
      "org.camunda.bpm.engine.impl.delegate.DelegateInvocation",
      "org.camunda.bpm.engine.impl.javax.el.ValueExpression",
      "com.att.eelf.configuration.EELFLogger",
      "org.camunda.bpm.engine.impl.pvm.runtime.operation.PvmAtomicOperationFireProcessStart",
      "org.camunda.bpm.engine.runtime.CaseInstance",
      "org.camunda.bpm.engine.impl.pvm.runtime.operation.PvmAtomicOperationCreateScope",
      "org.camunda.bpm.engine.impl.db.DbEntityLifecycleAware",
      "org.camunda.bpm.engine.impl.pvm.process.ActivityImpl",
      "org.camunda.bpm.engine.impl.core.model.CoreModelElement",
      "org.camunda.bpm.engine.impl.interceptor.CommandInterceptor",
      "org.camunda.bpm.engine.impl.pvm.PvmProcessInstance",
      "org.camunda.bpm.engine.impl.cmmn.execution.CaseSentryPartImpl",
      "org.camunda.bpm.engine.variable.value.TypedValue",
      "org.openecomp.mso.logger.MsoAlarmLogger",
      "org.apache.ibatis.transaction.TransactionFactory",
      "org.camunda.bpm.engine.impl.cmmn.execution.CmmnSentryPart",
      "org.camunda.bpm.engine.impl.pvm.process.LaneSet",
      "org.camunda.bpm.engine.delegate.DelegateListener",
      "org.camunda.bpm.engine.impl.cmmn.execution.CmmnActivityExecution",
      "org.camunda.bpm.engine.impl.persistence.entity.TaskEntityVariableStore",
      "org.camunda.bpm.engine.delegate.ExecutionListener",
      "org.camunda.bpm.engine.exception.NotAllowedException",
      "org.camunda.bpm.engine.impl.history.event.HistoryEventType",
      "org.openecomp.mso.bpmn.core.MissingInjectedFieldException",
      "org.openecomp.mso.bpmn.core.LogTask",
      "org.camunda.bpm.engine.impl.pvm.process.HasDIBounds",
      "com.att.eelf.configuration.SLF4jWrapper",
      "org.camunda.bpm.engine.task.Task",
      "org.camunda.bpm.engine.impl.javax.el.Expression",
      "org.camunda.bpm.engine.impl.pvm.runtime.operation.AbstractPvmEventAtomicOperation",
      "org.camunda.bpm.engine.impl.pvm.runtime.operation.PvmAtomicOperationActivityInstanceEnd",
      "org.camunda.bpm.engine.impl.context.CoreExecutionContext",
      "org.camunda.bpm.engine.delegate.DelegateVariableInstance",
      "org.camunda.bpm.model.bpmn.instance.FlowNode",
      "org.openecomp.mso.logger.MsoLogger",
      "org.camunda.bpm.engine.impl.core.variable.scope.AbstractVariableScope",
      "org.camunda.bpm.model.cmmn.CmmnModelInstance",
      "org.camunda.bpm.model.bpmn.instance.Task",
      "org.camunda.bpm.engine.variable.VariableMap",
      "org.camunda.bpm.engine.impl.pvm.runtime.ActivityInstanceState$ActivityInstanceStateImpl",
      "org.camunda.bpm.engine.impl.pvm.runtime.operation.PvmAtomicOperationProcessEnd",
      "org.camunda.bpm.engine.impl.interceptor.CommandExecutorImpl",
      "org.camunda.bpm.model.bpmn.instance.BaseElement",
      "org.camunda.bpm.engine.exception.NullValueException",
      "org.camunda.bpm.engine.impl.core.variable.scope.CoreVariableStore",
      "org.camunda.bpm.engine.impl.context.BpmnExecutionContext",
      "org.openecomp.mso.bpmn.core.BaseTask",
      "org.camunda.bpm.engine.impl.persistence.entity.VariableInstanceEntity",
      "org.camunda.bpm.engine.impl.persistence.entity.ExecutionEntity",
      "org.camunda.bpm.engine.impl.cmmn.execution.CaseExecutionState",
      "org.apache.ibatis.session.SqlSessionFactory",
      "org.camunda.bpm.engine.impl.variable.AbstractPersistentVariableStore",
      "org.camunda.bpm.engine.impl.interceptor.CommandInvocationContext",
      "com.att.eelf.i18n.EELFResourceManager",
      "org.camunda.bpm.engine.impl.el.FixedValue",
      "org.camunda.bpm.engine.impl.core.delegate.CoreActivityBehavior",
      "org.openecomp.mso.logger.MessageEnum",
      "org.openecomp.mso.logger.MsoLogger$ResponseCode",
      "org.camunda.bpm.engine.SuspendedEntityInteractionException",
      "org.camunda.bpm.engine.impl.pvm.runtime.ActivityInstanceState",
      "org.openecomp.mso.logger.MsoLogger$StatusCode",
      "org.camunda.bpm.engine.impl.db.HasDbReferences",
      "org.camunda.bpm.engine.impl.tree.Collector",
      "com.att.eelf.configuration.EELFManager",
      "org.camunda.bpm.engine.impl.pvm.runtime.ExecutionStartContext",
      "org.camunda.bpm.engine.impl.core.operation.CoreAtomicOperation",
      "org.camunda.bpm.engine.impl.el.Expression",
      "org.camunda.bpm.engine.impl.pvm.PvmTransition",
      "org.camunda.bpm.engine.impl.persistence.entity.SuspensionState",
      "org.camunda.bpm.model.cmmn.instance.CmmnElement",
      "org.camunda.bpm.engine.impl.cfg.StandaloneInMemProcessEngineConfiguration",
      "org.camunda.bpm.engine.impl.persistence.entity.IncidentEntity",
      "org.camunda.bpm.engine.impl.pvm.runtime.operation.PvmAtomicOperationProcessStart",
      "org.camunda.bpm.engine.impl.jobexecutor.JobHandler",
      "com.att.eelf.i18n.EELFResourceManager$1",
      "org.camunda.bpm.engine.impl.core.instance.CoreExecution",
      "org.camunda.bpm.engine.impl.core.variable.CoreVariableInstance",
      "org.camunda.bpm.engine.variable.type.PrimitiveValueType",
      "org.camunda.bpm.engine.delegate.VariableListener",
      "org.camunda.bpm.engine.impl.pvm.runtime.operation.PvmAtomicOperationActivityExecute",
      "org.camunda.bpm.engine.impl.cmmn.model.CmmnSentryDeclaration",
      "org.camunda.bpm.engine.impl.pvm.runtime.PvmExecutionImpl$1"
    );
  } 

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

    org.evosuite.runtime.classhandling.ClassStateSupport.resetClasses(
      "org.openecomp.mso.logger.MsoLogger$Catalog",
      "org.camunda.bpm.engine.impl.core.variable.scope.AbstractVariableScope",
      "org.camunda.bpm.engine.impl.core.instance.CoreExecution",
      "org.camunda.bpm.engine.impl.pvm.runtime.PvmExecutionImpl",
      "org.camunda.bpm.engine.impl.persistence.entity.ExecutionEntity",
      "org.camunda.bpm.engine.impl.pvm.runtime.ActivityInstanceState",
      "org.camunda.bpm.engine.impl.persistence.entity.ExecutionEntityVariableStore",
      "org.camunda.bpm.engine.impl.persistence.entity.SuspensionState",
      "org.camunda.bpm.engine.impl.context.Context",
      "org.camunda.bpm.engine.impl.javax.el.Expression",
      "org.camunda.bpm.engine.impl.javax.el.ValueExpression",
      "org.camunda.bpm.engine.ProcessEngineException",
      "org.openecomp.mso.bpmn.core.BadInjectedFieldException",
      "org.camunda.bpm.engine.impl.pvm.runtime.ExecutionImpl",
      "org.camunda.bpm.engine.impl.core.model.CoreModelElement",
      "org.camunda.bpm.engine.impl.core.model.CoreActivity",
      "org.camunda.bpm.engine.impl.pvm.process.ScopeImpl",
      "org.camunda.bpm.engine.impl.pvm.process.ProcessDefinitionImpl",
      "org.openecomp.mso.bpmn.core.MissingInjectedFieldException",
      "org.camunda.bpm.engine.impl.pvm.PvmException",
      "org.camunda.bpm.engine.exception.NullValueException",
      "org.camunda.bpm.engine.impl.core.variable.VariableMapImpl",
      "org.camunda.bpm.engine.impl.persistence.entity.TaskEntity",
      "org.camunda.bpm.engine.impl.pvm.process.ActivityImpl",
      "org.camunda.bpm.engine.impl.pvm.process.ActivityStartBehavior",
      "org.camunda.bpm.engine.impl.util.BitMaskUtil",
      "org.camunda.bpm.engine.impl.core.variable.value.NullValueImpl",
      "org.camunda.bpm.engine.impl.pvm.runtime.operation.PvmAtomicOperationActivityInstanceEnd",
      "org.camunda.bpm.engine.impl.pvm.runtime.operation.PvmAtomicOperationProcessEnd",
      "org.camunda.bpm.engine.impl.pvm.runtime.operation.PvmAtomicOperationCreateScope",
      "org.camunda.bpm.engine.impl.pvm.runtime.operation.PvmAtomicOperationActivityExecute",
      "org.camunda.bpm.engine.impl.pvm.runtime.operation.PvmAtomicOperationTransitionDestroyScope",
      "org.camunda.bpm.engine.impl.pvm.runtime.operation.PvmAtomicOperation",
      "org.camunda.bpm.engine.impl.core.variable.value.UntypedValueImpl",
      "org.camunda.bpm.engine.impl.cmmn.model.CmmnActivity",
      "org.camunda.bpm.engine.impl.cmmn.model.CmmnCaseDefinition",
      "org.camunda.bpm.engine.impl.pvm.runtime.PvmExecutionImpl$1",
      "org.camunda.bpm.engine.impl.cmmn.execution.CmmnExecution",
      "org.camunda.bpm.engine.impl.cmmn.execution.CaseExecutionImpl",
      "org.camunda.bpm.engine.impl.cmmn.execution.CaseExecutionState",
      "org.camunda.bpm.engine.impl.persistence.entity.JobEntity",
      "org.camunda.bpm.engine.impl.persistence.entity.EventSubscriptionEntity",
      "org.openecomp.mso.logger.MsoLogger",
      "com.att.eelf.i18n.EELFResourceManager",
      "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.logger.MessageEnum",
      "org.openecomp.mso.logger.MsoAlarmLogger",
      "org.openecomp.mso.bpmn.core.LogTask"
    );
  }
}