{{ resolvedDiscussionCount }}/{{ discussionCount }} {{ resolvedCountText }} resolved
-
719 723 return json; 720 724 } 721 725 726 public LockReportJSON sendLockReport(LockReportParameters param) throws NetworkDisconnectedException, AcmsException { 727 HttpResponse response = send(AcmsApis.ApiLockReport, param); 728 String json = response.httpResponseBody; 729 return new LockReportJSON(json); 730 } 731 732 public UnlockReportJSON sendUnlockReport(UnlockReportParameters param) throws NetworkDisconnectedException, AcmsException { 733 HttpResponse response = send(AcmsApis.ApiUnlockReport, param); 734 String json = response.httpResponseBody; 735 return new UnlockReportJSON(json); 736 } 737 -
Developer
ロック要求とロック解除のCMSに対するAPI呼び出しを実装しています。
-
-
922 938 AcmsApis.ApiUrlNewAppStoreLogin, 923 939 AcmsApis.ApiUrlAppStoreNewLogin, 924 940 AcmsApis.ApiGetPushMessages, 925 AcmsApis.ApiSendPushMessage 941 AcmsApis.ApiSendPushMessage, 942 AcmsApis.ApiLockReport, 943 AcmsApis.ApiUnlockReport -
Developer
API呼び出しにPOSTメソッドを使うものを識別するための配列に、ロックとアンロックを追加しています。
-
-
1084 mTaskKey, 1085 dateOrNull(abookCheckParam.get("reportStartDate")), 1086 r.getExtParam().getReportStatus(), 1087 r.getExtParam().getReportLockUserId(), 1088 r.getExtParam().getReportLockUserName(), 1089 r.getExtParam().getReportLockTime() 1090 ); 1091 // JSコールバック 1092 afterABookCheckApi( 1093 mCmd, 1094 mTaskKey, 1095 r.getResult(), 1096 r.getMessage(), 1097 r.getExtParam().json() 1098 ); 1099 } else if (mCmd.equals(ABookKeys.CMD_UNLOCK_REPORT)) { -
Developer
API呼び出しとWebViewのJavaScriptへのコールバックを実装しています。 ここについては、最新版では簡潔に見えるように整理されてます。
-
-
unmarked as a Work In Progress
Toggle commit list -
-
-
-
-
-
-
-
-
-
-
added 2 commits
Toggle commit list -
-
merged
Toggle commit list