类 CustomVariableServiceImpl
- java.lang.Object
-
- net.risesoft.service.impl.CustomVariableServiceImpl
-
- 所有已实现的接口:
CustomVariableService
@Service("customVariableService") public class CustomVariableServiceImpl extends Object implements CustomVariableService- 作者:
- qinman, zhangchongjie
- Date:
- 2022/12/30
-
-
构造器概要
构造器 构造器 说明 CustomVariableServiceImpl()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voiddeleteVariable(String taskId, String key)删除流程变量ObjectgetVariable(String taskId, String key)获取流程变量ObjectgetVariableLocal(String taskId, String key)获取任务变量Map<String,Object>getVariables(String taskId)获取多个流程变量Map<String,Object>getVariablesLocal(String taskId)获取所有任务变量voidremoveVariableLocal(String taskId, String key)Description:voidsetVariable(String taskId, String key, Object val)设置流程变量voidsetVariableLocal(String taskId, String key, Object val)设置任务变量voidsetVariables(String taskId, Map<String,Object> map)这是保存多个流程变量voidsetVariablesLocal(String taskId, Map<String,Object> map)设置多个任务变量
-
-
-
方法详细资料
-
deleteVariable
public void deleteVariable(String taskId, String key)
从接口复制的说明:CustomVariableService删除流程变量- 指定者:
deleteVariable在接口中CustomVariableService
-
getVariable
public Object getVariable(String taskId, String key)
从接口复制的说明:CustomVariableService获取流程变量- 指定者:
getVariable在接口中CustomVariableService- 返回:
-
getVariableLocal
public Object getVariableLocal(String taskId, String key)
从接口复制的说明:CustomVariableService获取任务变量- 指定者:
getVariableLocal在接口中CustomVariableService- 返回:
-
getVariables
public Map<String,Object> getVariables(String taskId)
从接口复制的说明:CustomVariableService获取多个流程变量- 指定者:
getVariables在接口中CustomVariableService- 返回:
-
getVariablesLocal
public Map<String,Object> getVariablesLocal(String taskId)
从接口复制的说明:CustomVariableService获取所有任务变量- 指定者:
getVariablesLocal在接口中CustomVariableService- 返回:
-
removeVariableLocal
public void removeVariableLocal(String taskId, String key)
从接口复制的说明:CustomVariableServiceDescription:- 指定者:
removeVariableLocal在接口中CustomVariableService
-
setVariable
public void setVariable(String taskId, String key, Object val)
从接口复制的说明:CustomVariableService设置流程变量- 指定者:
setVariable在接口中CustomVariableService
-
setVariableLocal
public void setVariableLocal(String taskId, String key, Object val)
从接口复制的说明:CustomVariableService设置任务变量- 指定者:
setVariableLocal在接口中CustomVariableService
-
setVariables
public void setVariables(String taskId, Map<String,Object> map)
从接口复制的说明:CustomVariableService这是保存多个流程变量- 指定者:
setVariables在接口中CustomVariableService
-
setVariablesLocal
public void setVariablesLocal(String taskId, Map<String,Object> map)
从接口复制的说明:CustomVariableService设置多个任务变量- 指定者:
setVariablesLocal在接口中CustomVariableService
-
-