org.jbpm.simulation.SimulationInfo Maven / Gradle / Ivy
/*
* Copyright 2015 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
*
* 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 org.jbpm.simulation;
public class SimulationInfo {
private long startTime;
private long endTime;
private String processId;
private String processName;
private String processVersion;
private int numberOfExecutions;
private long interval;
public SimulationInfo(long startTime, String processId, int numberOfExecutions, long interval) {
this.startTime = startTime;
this.processId = processId;
this.numberOfExecutions = numberOfExecutions;
this.interval = interval;
}
public long getStartTime() {
return startTime;
}
public void setStartTime(long startTime) {
this.startTime = startTime;
}
public long getEndTime() {
return endTime;
}
public void setEndTime(long endTime) {
this.endTime = endTime;
}
public String getProcessId() {
return processId;
}
public void setProcessId(String processId) {
this.processId = processId;
}
public String getProcessName() {
return processName;
}
public void setProcessName(String processName) {
this.processName = processName;
}
public String getProcessVersion() {
return processVersion;
}
public void setProcessVersion(String processVersion) {
this.processVersion = processVersion;
}
public int getNumberOfExecutions() {
return numberOfExecutions;
}
public void setNumberOfExecutions(int numberOfExecutions) {
this.numberOfExecutions = numberOfExecutions;
}
public long getInterval() {
return interval;
}
public void setInterval(int interval) {
this.interval = interval;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy