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

com.tibco.bw.maven.plugin.test.dto.ModuleInfoDTO 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 ModuleInfoDTO implements Serializable
{

	private String appName;
	
	private String appVersion;
	
	private String moduleName;
	
	private String moduleVersion;

	@XmlElement
	public String getAppName() 
	{
		return appName;
	}

	public void setAppName(String appName) 
	{
		this.appName = appName;
	}

	@XmlElement
	public String getAppVersion() 
	{
		return appVersion;
	}

	public void setAppVersion(String appVersion) 
	{
		this.appVersion = appVersion;
	}

	@XmlElement
	public String getModuleName() 
	{
		return moduleName;
	}
	
	public void setModuleName(String moduleName) 
	{
		this.moduleName = moduleName;
	}

	
	@XmlElement
	public String getModuleVersion() 
	{
		return moduleVersion;
	}

	public void setModuleVersion(String moduleVersion) 
	{
		this.moduleVersion = moduleVersion;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy