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

com.tibco.bw.maven.plugin.test.dto.TestCaseDTO 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.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;

@SuppressWarnings("serial")
@XmlType
@XmlSeeAlso({AssertionDTO.class,MockActivityDTO.class})

public class TestCaseDTO implements Serializable{


	
	private String xmlInput;
	
	private String mockOutputFilePath;
	
	private String testCaseFile;
	
	private String serviceName;
	
	private String operationName;
	
	private String serviceType;
	
	private String processStarterID;
	

	public String getServiceType() {
		return serviceType;
	}

	public void setServiceType(String serviceType) {
		this.serviceType = serviceType;
	}

	@SuppressWarnings("rawtypes")
	private List assertionList = new ArrayList();
	
	@SuppressWarnings("rawtypes")
	private List mockActivityList = new ArrayList();

	@XmlElement
	public String getXmlInput() 
	{
		return xmlInput;
	}

	public void setXmlInput(String xmlInput) 
	{
		this.xmlInput = xmlInput;
	}
	
	public void setmockOutputFilePath(String mockOutputFilePath) 
	{
		this.mockOutputFilePath = mockOutputFilePath;
	}
	
	@XmlElement
	public String getmockOutputFilePath() 
	{
		return mockOutputFilePath;
	}

	@SuppressWarnings("rawtypes")
	@XmlElement(name="assertionList")
	public List getAssertionList() 
	{
		return assertionList;
	}

	@SuppressWarnings("rawtypes")
	public void setAssertionList(List assertionList) {
		this.assertionList = assertionList;
	}

	@XmlElement
	public String getTestCaseFile() 
	{
		return testCaseFile;
	}

	public void setTestCaseFile(String testCaseFile) 
	{
		this.testCaseFile = testCaseFile;
	}
	
	@SuppressWarnings("rawtypes")
	@XmlElement(name="mockActivityList")
	public List getMockActivityList() 
	{
		return mockActivityList;
	}

	@SuppressWarnings("rawtypes")
	public void setMockActivityList(List mockActivityList) {
		this.mockActivityList = mockActivityList;
	}

	public String getServiceName() {
		return serviceName;
	}

	public void setServiceName(String serviceName) {
		this.serviceName = serviceName;
	}

	public String getOperationName() {
		return operationName;
	}

	public void setOperationName(String operationName) {
		this.operationName = operationName;
	}

	public String getProcessStarterID() {
		return processStarterID;
	}

	public void setProcessStarterID(String processStarterID) {
		this.processStarterID = processStarterID;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy