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

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


@SuppressWarnings("serial")
@XmlType
public class MockActivityDTO implements Serializable {
	
	private String location;
	private String mockOutputFilePath;
	
	@XmlElement
	public String getLocation() {
		return location;
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy