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.13.2
Show newest version
package io.antmedia.rest.model;

import io.swagger.v3.oas.annotations.media.Schema;

@Schema(description = "The version class")
public class Version {

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

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

    @Schema(description = "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 - 2025 Weber Informatics LLC | Privacy Policy