Advertisement
minafaw3

validation method

Nov 22nd, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. onHttpRequestListener validate_callback = new onHttpRequestListener() {
  2. @Override
  3. public void onHttpResult(ConnectionExecutor.HTTPResponse response, String send_data) {
  4. DialogUtils.HideLoader();
  5. if (response.response == ConnectionExecutor.ResponseType.SUCCESS) {
  6. try {
  7. JSONObject jsonObject = (JSONObject) response.data;
  8. JsonParser jsonParser = new JsonParser();
  9. validateItem item = new validateItem();
  10. item = jsonParser.get_validate_response(jsonObject);
  11. if (item != null) {
  12. if (item.getLog().equals(AppConstants.TAG_VALID)) {
  13. DialogUtils.showAlertDialog(validateActivity.this, "Success", "voucher valid and validate Successfully ", true, false);
  14. } else if (item.getLog().equals(AppConstants.TAG_VALIDATED)) {
  15. DialogUtils.showAlertDialog(validateActivity.this, "Success", "Voucher validated ", true, false);
  16. }
  17. _VoucherItem.setBalance(item.getBalance());
  18. balance_tv.setText("Voucher value " + item.getBalance());
  19. validation_items.add(item);
  20. adapter.notifyDataSetChanged();
  21. }
  22.  
  23. } catch (Exception e) {
  24. e.printStackTrace();
  25. }
  26. } else {
  27. if ((response.value).equals(AppConstants.ERROR_AUTHENTICATE)) {
  28. DialogUtils.showAlertDialog(validateActivity.this, "Action Required", "Your token expired , please re-login", false, true);
  29. } else {
  30. showAlertwithcutomview(response.value);
  31. }
  32.  
  33. }
  34. }
  35. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement