public enum ProcessExpressions extends Enum<ProcessExpressions>
| Modifier and Type | Method and Description |
|---|---|
static org.camunda.bpm.engine.runtime.MessageCorrelationBuilder |
mockMessageCorrelation(org.camunda.bpm.engine.RuntimeService serviceMock)
Registers the mock for message correlation.
|
static org.camunda.bpm.engine.runtime.MessageCorrelationBuilder |
mockMessageCorrelation(org.camunda.bpm.engine.RuntimeService serviceMock,
String messageName)
Registers the mock for message correlation.
|
static CallActivityMock |
registerCallActivityMock(String processDefinitionKey)
Registers a call activity mock for the given process definition key (without the possibility
to adjust the properties of the mocked model).
|
static CallActivityMock |
registerCallActivityMock(String processDefinitionKey,
CallActivityMock.MockedModelConfigurer mockedModelConfigurer)
Registers a call activity mock for the given process definition key.
|
static ProcessExpressions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessExpressions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static ProcessExpressions[] values()
for (ProcessExpressions c : ProcessExpressions.values()) System.out.println(c);
public static ProcessExpressions valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static CallActivityMock registerCallActivityMock(String processDefinitionKey, CallActivityMock.MockedModelConfigurer mockedModelConfigurer)
processDefinitionKey - process definition key of the called processmockedModelConfigurer - configurer for adjusting the attributes of the mocked modelpublic static CallActivityMock registerCallActivityMock(String processDefinitionKey)
processDefinitionKey - process definition key of the called processpublic static org.camunda.bpm.engine.runtime.MessageCorrelationBuilder mockMessageCorrelation(org.camunda.bpm.engine.RuntimeService serviceMock,
String messageName)
serviceMock - runtime service mock.messageName - name of the message to mock message correlation for.public static org.camunda.bpm.engine.runtime.MessageCorrelationBuilder mockMessageCorrelation(org.camunda.bpm.engine.RuntimeService serviceMock)
serviceMock - runtime service mock.Copyright © 2020 Camunda Services GmbH. All rights reserved.