Interface UpdateServiceAsync
-
public interface UpdateServiceAsync
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
checkDownloadStatus(com.google.gwt.user.client.rpc.AsyncCallback<int[]> callback)
void
checkPatch(String userNo, String currentRelease, com.google.gwt.user.client.rpc.AsyncCallback<GUIPatch[]> callback)
void
checkUpdate(String userNo, String currentRelease, com.google.gwt.user.client.rpc.AsyncCallback<GUIParameter[]> callback)
void
confirmPatch(String updateFileName, com.google.gwt.user.client.rpc.AsyncCallback<String> callback)
void
confirmUpdate(String updateFileName, com.google.gwt.user.client.rpc.AsyncCallback<String> callback)
void
downloadPatch(String userNo, String id, String fileName, long fileSize, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
void
downloadUpdate(String userNo, String id, String fileName, long fileSize, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
void
getPatchNotes(String patchFileName, com.google.gwt.user.client.rpc.AsyncCallback<String[]> callback)
void
getUpdateNotes(String updateFileName, com.google.gwt.user.client.rpc.AsyncCallback<String[]> callback)
-
-
-
Method Detail
-
checkUpdate
void checkUpdate(String userNo, String currentRelease, com.google.gwt.user.client.rpc.AsyncCallback<GUIParameter[]> callback)
-
downloadUpdate
void downloadUpdate(String userNo, String id, String fileName, long fileSize, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
-
checkDownloadStatus
void checkDownloadStatus(com.google.gwt.user.client.rpc.AsyncCallback<int[]> callback)
-
getUpdateNotes
void getUpdateNotes(String updateFileName, com.google.gwt.user.client.rpc.AsyncCallback<String[]> callback)
-
confirmUpdate
void confirmUpdate(String updateFileName, com.google.gwt.user.client.rpc.AsyncCallback<String> callback)
-
checkPatch
void checkPatch(String userNo, String currentRelease, com.google.gwt.user.client.rpc.AsyncCallback<GUIPatch[]> callback)
-
confirmPatch
void confirmPatch(String updateFileName, com.google.gwt.user.client.rpc.AsyncCallback<String> callback)
-
getPatchNotes
void getPatchNotes(String patchFileName, com.google.gwt.user.client.rpc.AsyncCallback<String[]> callback)
-
-