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