Package org.syncany.operations.update
Class AppInfo
- java.lang.Object
-
- org.syncany.operations.update.AppInfo
-
public class AppInfo extends java.lang.Object
This class represents an information object describing an application release for a single distribution type. It is returned by the Syncany API during theUpdateOperation
with the actionUpdateOperationAction.CHECK
.this class uses the Simple framework for XML serialization, and its corresponding annotation-based configuration.
- See Also:
- Simple framework, Syncany Website/API
-
-
Constructor Summary
Constructors Constructor Description AppInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getAppVersion()
java.lang.String
getArchitecture()
java.lang.String
getDate()
java.lang.String
getDist()
java.lang.String
getDownloadUrl()
java.lang.String
getOperatingSystem()
java.lang.String
getType()
boolean
isChecksum()
boolean
isRelease()
-
-
-
Constructor Detail
-
AppInfo
public AppInfo()
-
-
Method Detail
-
getDist
public java.lang.String getDist()
-
getType
public java.lang.String getType()
-
getAppVersion
public java.lang.String getAppVersion()
-
getDate
public java.lang.String getDate()
-
isRelease
public boolean isRelease()
-
getOperatingSystem
public java.lang.String getOperatingSystem()
-
getArchitecture
public java.lang.String getArchitecture()
-
isChecksum
public boolean isChecksum()
-
getDownloadUrl
public java.lang.String getDownloadUrl()
-
-