com.tibco.bw.maven.plugin.test.dto.BWTestSuiteDTO 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.dto;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
@XmlType
@XmlSeeAlso({TestCaseResultDTO.class})
public class BWTestSuiteDTO implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
private String testSuiteName;
private HashMap testCaseWithProcessNameMap = new HashMap<>();
@SuppressWarnings("rawtypes")
private List testCaseList = new ArrayList();
@XmlElement
public String getTestSuiteName() {
return testSuiteName;
}
public void setTestSuiteName(String testSuiteName) {
this.testSuiteName = testSuiteName;
}
@SuppressWarnings("rawtypes")
@XmlElement(name="testCaseResult")
public List getTestCaseList() {
return testCaseList;
}
@SuppressWarnings("rawtypes")
public void setTestCaseList(List testCaseList) {
this.testCaseList = testCaseList;
}
@XmlElement(name="testSuiteWithProcessMap")
public HashMap getTestCaseWithProcessNameMap() {
return testCaseWithProcessNameMap;
}
public void setTestCaseWithProcessNameMap(
HashMap testCaseWithProcessNameMap) {
this.testCaseWithProcessNameMap = testCaseWithProcessNameMap;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy