
cn.schoolwow.quickflow.domain.FlowContextDataKeySet Maven / Gradle / Ivy
package cn.schoolwow.quickflow.domain;
import java.util.HashSet;
import java.util.Set;
/**流程上下文数据key列表*/
public class FlowContextDataKeySet {
/**请求数据key*/
public Set requestDataKeySet = new HashSet<>();
/**临时数据key*/
public Set temporaryDataKeySet = new HashSet<>();
/**返回数据key*/
public Set returnDataKeySet = new HashSet<>();
/**流程配置数据key*/
public Set flowConfigDataKeySet = new HashSet<>();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy