mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-18 03:01:05 +01:00
23 lines
521 B
Java
23 lines
521 B
Java
package sonia.scm.update;
|
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
import javax.xml.bind.annotation.XmlRootElement;
|
|
|
|
@XmlRootElement(name = "latest-version")
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
public class UpdateVersionInfo {
|
|
private String latestVersion;
|
|
|
|
public UpdateVersionInfo() {
|
|
}
|
|
|
|
public UpdateVersionInfo(String latestVersion) {
|
|
this.latestVersion = latestVersion;
|
|
}
|
|
|
|
public String getLatestVersion() {
|
|
return latestVersion;
|
|
}
|
|
}
|