io.camunda.process.test.impl.client.FlowNodeInstanceDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camunda-process-test-java Show documentation
Show all versions of camunda-process-test-java Show documentation
Camunda's testing library for processes and process applications with Java
/*
* Copyright © 2017 camunda services GmbH ([email protected])
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.camunda.process.test.impl.client;
public class FlowNodeInstanceDto {
private long key;
private long processInstanceKey;
private long processDefinitionKey;
private String startDate;
private String endDate;
private String flowNodeId;
private String flowNodeName;
private long incidentKey;
private String type;
private FlowNodeInstanceState state;
private boolean incident;
private String tenantId;
public long getKey() {
return key;
}
public void setKey(final long key) {
this.key = key;
}
public long getProcessInstanceKey() {
return processInstanceKey;
}
public void setProcessInstanceKey(final long processInstanceKey) {
this.processInstanceKey = processInstanceKey;
}
public long getProcessDefinitionKey() {
return processDefinitionKey;
}
public void setProcessDefinitionKey(final long processDefinitionKey) {
this.processDefinitionKey = processDefinitionKey;
}
public String getStartDate() {
return startDate;
}
public void setStartDate(final String startDate) {
this.startDate = startDate;
}
public String getEndDate() {
return endDate;
}
public void setEndDate(final String endDate) {
this.endDate = endDate;
}
public String getFlowNodeId() {
return flowNodeId;
}
public void setFlowNodeId(final String flowNodeId) {
this.flowNodeId = flowNodeId;
}
public String getFlowNodeName() {
return flowNodeName;
}
public void setFlowNodeName(final String flowNodeName) {
this.flowNodeName = flowNodeName;
}
public long getIncidentKey() {
return incidentKey;
}
public void setIncidentKey(final long incidentKey) {
this.incidentKey = incidentKey;
}
public String getType() {
return type;
}
public void setType(final String type) {
this.type = type;
}
public FlowNodeInstanceState getState() {
return state;
}
public void setState(final FlowNodeInstanceState state) {
this.state = state;
}
public boolean isIncident() {
return incident;
}
public void setIncident(final boolean incident) {
this.incident = incident;
}
public String getTenantId() {
return tenantId;
}
public void setTenantId(final String tenantId) {
this.tenantId = tenantId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy