cz.mmsparams.api.websocket.model.SystemVersionModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of MmsParamsAPI Show documentation
Show all versions of MmsParamsAPI Show documentation
Common library for MmsParams system
The newest version!
package cz.mmsparams.api.websocket.model;
import java.io.Serializable;
import cz.mmsparams.api.constants.AppVersion;
public class SystemVersionModel implements Serializable
{
private String systemVersion;
private String systemBuild;
public SystemVersionModel()
{
}
public SystemVersionModel(String systemVersion, String systemBuild)
{
this.systemVersion = systemVersion;
this.systemBuild = systemBuild;
}
public static SystemVersionModel create()
{
return new SystemVersionModel(AppVersion.SYSTEM_VERSION, AppVersion.SYSTEM_BUILD);
}
public String getSystemVersion()
{
return systemVersion;
}
public void setSystemVersion(String systemVersion)
{
this.systemVersion = systemVersion;
}
public String getSystemBuild()
{
return systemBuild;
}
public void setSystemBuild(String systemBuild)
{
this.systemBuild = systemBuild;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy