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

com.tibco.bw.maven.plugin.test.dto.CompleteReportDTO 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.List;

import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSeeAlso;

@SuppressWarnings("serial")
@XmlRootElement
@XmlSeeAlso({TestSuiteResultDTO.class})
public class CompleteReportDTO implements Serializable
{
	@SuppressWarnings("rawtypes")
	List moduleResult = new ArrayList();

	@SuppressWarnings("rawtypes")
	public List getModuleResult() 
	{
		return moduleResult;
	}

	@SuppressWarnings("rawtypes")
	public void setModuleResult(List moduleResult)
	{
		this.moduleResult = moduleResult;
	}
	
	
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy