📄 humantaskinstruction.java
字号:
package com.ibm.gbsc.cte.sample;
import java.util.List;
public class HumanTaskInstruction {
private String taskType = Constants.HTM_TYPE_VIEW;
private String taskName="";
private String instruction="";
private List vars = null;
private Routing route = null;
private String uniqueId = "1";
private boolean showRoute = false;
/**
* @return the instruction
*/
public String getInstruction() {
return instruction;
}
/**
* @param instruction the instruction to set
*/
public void setInstruction(String instruction) {
this.instruction = instruction;
}
/**
* @return the taskName
*/
public String getTaskName() {
return taskName;
}
/**
* @param taskName the taskName to set
*/
public void setTaskName(String taskName) {
this.taskName = taskName;
}
/**
* @return the vars
*/
public List getVars() {
return vars;
}
/**
* @param vars the vars to set
*/
public void setVars(List vars) {
this.vars = vars;
}
/**
* @return the uniqueId
*/
public String getUniqueId() {
return uniqueId;
}
/**
* @param uniqueId the uniqueId to set
*/
public void setUniqueId(String uniqueId) {
this.uniqueId = uniqueId;
}
/**
* @return the showRoute
*/
public boolean isShowRoute() {
return route!=null;
}
/**
* @param showRoute the showRoute to set
*/
public void setShowRoute(boolean showRoute) {
this.showRoute = showRoute;
}
/**
* @return the taskType
*/
public String getTaskType() {
return taskType;
}
/**
* @param taskType the taskType to set
*/
public void setTaskType(String taskType) {
this.taskType = taskType;
}
/**
* @return the route
*/
public Routing getRoute() {
return route;
}
/**
* @param route the route to set
*/
public void setRoute(Routing route) {
this.route = route;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -