Package org.syncany.operations.update
Class AppInfoResponse
- java.lang.Object
-
- org.syncany.operations.update.AppInfoResponse
-
public class AppInfoResponse extends java.lang.Object
This class represents the response from the Syncany API when checking the newest application versions. The response object returns a list ofAppInfo
objects, one for each distribution type and operating system.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 AppInfoResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.ArrayList<AppInfo>
getAppInfoList()
int
getCode()
java.lang.String
getMessage()
void
setAppInfoList(java.util.ArrayList<AppInfo> appInfoList)
void
setCode(int code)
void
setMessage(java.lang.String message)
-
-
-
Constructor Detail
-
AppInfoResponse
public AppInfoResponse()
-
-
Method Detail
-
getCode
public int getCode()
-
setCode
public void setCode(int code)
-
getMessage
public java.lang.String getMessage()
-
setMessage
public void setMessage(java.lang.String message)
-
getAppInfoList
public java.util.ArrayList<AppInfo> getAppInfoList()
-
setAppInfoList
public void setAppInfoList(java.util.ArrayList<AppInfo> appInfoList)
-
-