use of org.camunda.bpm.container.impl.spi.DeploymentOperationStep in project camunda-bpm-platform by camunda.
the class StartManagedThreadPoolStepTest method setUp.
@Before
public void setUp() {
step = new StartManagedThreadPoolStep();
deploymentOperation = new DeploymentOperation("name", container, Collections.<DeploymentOperationStep>emptyList());
jobExecutorXml = new JobExecutorXmlImpl();
bpmPlatformXml = new BpmPlatformXmlImpl(jobExecutorXml, Collections.<ProcessEngineXml>emptyList());
deploymentOperation.addAttachment(Attachments.BPM_PLATFORM_XML, bpmPlatformXml);
}
Aggregations