com.tibco.bw.maven.plugin.test.coverage.ProcessCoverage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bw6-maven-plugin Show documentation
Show all versions of bw6-maven-plugin Show documentation
Plugin Code for Apache Maven and TIBCO BusinessWorks™.
This is the Maven Plugin for BW6 and BWCE Build.
package com.tibco.bw.maven.plugin.test.coverage;
import java.util.ArrayList;
import java.util.List;
public class ProcessCoverage
{
private String moduleName ;
private String processName;
private boolean isSubProcess;
private List transitions = new ArrayList<>();
private List activities = new ArrayList<>();
private List transitionExec = new ArrayList<>();
private List activitiesExec = new ArrayList<>();
private boolean processExecuted = false;
public String getModuleName() {
return moduleName;
}
public void setModuleName(String moduleName) {
this.moduleName = moduleName;
}
public String getProcessName() {
return processName;
}
public void setProcessName(String processName) {
this.processName = processName;
}
public boolean isSubProcess() {
return isSubProcess;
}
public void setSubProcess(boolean isSubProcess) {
this.isSubProcess = isSubProcess;
}
public List getTransitions() {
return transitions;
}
public void setTransitions(List transitions) {
this.transitions = transitions;
}
public List getActivities() {
return activities;
}
public void setActivities(List activities) {
this.activities = activities;
}
public List getTransitionExec() {
return transitionExec;
}
public void setTransitionExec(List transitionExec) {
this.transitionExec = transitionExec;
}
public List getActivitiesExec() {
return activitiesExec;
}
public void setActivitiesExec(List activitiesExec) {
this.activitiesExec = activitiesExec;
}
public boolean isProcessExecuted() {
return processExecuted;
}
public void setProcessExecuted(boolean processExecuted) {
this.processExecuted = processExecuted;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy