lodsve.workflow.domain.FlowNode Maven / Gradle / Ivy
/*
* Copyright (C) 2018 Sun.Hao
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package lodsve.workflow.domain;
import lodsve.workflow.api.HandlerInterceptor;
import lodsve.workflow.enums.UrlType;
/**
* 工作流节点.
*
* @author sunhao([email protected])
* @version V1.0, 2015-11-18 下午1:43
*/
public class FlowNode {
private Long id;
private Long flowId;
private String title;
private String name;
private String conditional;
private String next;
private int nodeVersion;
private String interceptorBean;
private String interceptorClass;
private UrlType urlType;
private FormUrl formUrl;
private HandlerInterceptor interceptor;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getFlowId() {
return flowId;
}
public void setFlowId(Long flowId) {
this.flowId = flowId;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getConditional() {
return conditional;
}
public void setConditional(String conditional) {
this.conditional = conditional;
}
public String getNext() {
return next;
}
public void setNext(String next) {
this.next = next;
}
public int getNodeVersion() {
return nodeVersion;
}
public void setNodeVersion(int nodeVersion) {
this.nodeVersion = nodeVersion;
}
public String getInterceptorBean() {
return interceptorBean;
}
public void setInterceptorBean(String interceptorBean) {
this.interceptorBean = interceptorBean;
}
public String getInterceptorClass() {
return interceptorClass;
}
public void setInterceptorClass(String interceptorClass) {
this.interceptorClass = interceptorClass;
}
public UrlType getUrlType() {
return urlType;
}
public void setUrlType(UrlType urlType) {
this.urlType = urlType;
}
public FormUrl getFormUrl() {
return formUrl;
}
public void setFormUrl(FormUrl formUrl) {
this.formUrl = formUrl;
}
public HandlerInterceptor getInterceptor() {
return interceptor;
}
public void setInterceptor(HandlerInterceptor interceptor) {
this.interceptor = interceptor;
}
}