Package org.activiti.api.process.model
Interface IntegrationContext
-
public interface IntegrationContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddOutBoundVariable(String name, Object value)voidaddOutBoundVariables(Map<String,Object> variables)StringgetAppVersion()StringgetBusinessKey()StringgetClientId()StringgetClientName()StringgetClientType()StringgetConnectorType()StringgetExecutionId()StringgetId()<T> TgetInBoundVariable(String name)<T> TgetInBoundVariable(String name, Class<T> type)Map<String,Object>getInBoundVariables()<T> TgetOutBoundVariable(String name)<T> TgetOutBoundVariable(String name, Class<T> type)Map<String,Object>getOutBoundVariables()StringgetParentProcessInstanceId()StringgetProcessDefinitionId()StringgetProcessDefinitionKey()IntegergetProcessDefinitionVersion()StringgetProcessInstanceId()StringgetRootProcessInstanceId()
-
-
-
Method Detail
-
getId
String getId()
-
getProcessInstanceId
String getProcessInstanceId()
-
getRootProcessInstanceId
String getRootProcessInstanceId()
-
getParentProcessInstanceId
String getParentProcessInstanceId()
-
getExecutionId
String getExecutionId()
-
getProcessDefinitionId
String getProcessDefinitionId()
-
getProcessDefinitionKey
String getProcessDefinitionKey()
-
getProcessDefinitionVersion
Integer getProcessDefinitionVersion()
-
getBusinessKey
String getBusinessKey()
-
getConnectorType
String getConnectorType()
-
getAppVersion
String getAppVersion()
-
getClientId
String getClientId()
-
getClientName
String getClientName()
-
getClientType
String getClientType()
-
getInBoundVariable
<T> T getInBoundVariable(String name)
-
getOutBoundVariable
<T> T getOutBoundVariable(String name)
-
-