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