All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tibco.bw.maven.plugin.test.dto.BWTestSuiteDTO Maven / Gradle / Ivy

Go to download

Plugin Code for Apache Maven and TIBCO BusinessWorks™. This is the Maven Plugin for BW6 and BWCE Build.

There is a newer version: 2.9.9
Show newest version
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