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

io.antmedia.rest.model.Version Maven / Gradle / Ivy

Go to download

Ant Media Server supports RTMP, RTSP, MP4, HLS, WebRTC, Adaptive Streaming, etc.

There is a newer version: 2.10.0
Show newest version
package io.antmedia.rest.model;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

@ApiModel(value="Version", description="The version class")
public class Version {

	/**
	 * Gives information about the version name. 
	 */
	@ApiModelProperty(value = "Version of the software")
	public String versionName;

	/**
	 * Gives information about the version type
	 */
	@ApiModelProperty(value = "Version type of the software (Community or Enterprise)")
	public String versionType;

	@ApiModelProperty(value = "Build number(timestamp) of the software.")
	private String buildNumber;

	public String getVersionName() {
		return versionName;
	}

	public String getVersionType() {
		return versionType;
	}
	
	public void setVersionName(String versionName) {
		this.versionName = versionName;
	}

	public void setVersionType(String versionType) {
		this.versionType = versionType;
	}

	public void setBuildNumber(String value) {
		this.buildNumber = value;
	}
	
	public String getBuildNumber() {
		return buildNumber;
	}

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy