Advertisement
gonzalob

Untitled

Mar 9th, 2022
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.68 KB | None | 0 0
  1. package com.emer.beneficiary.app;
  2.  
  3. import static com.emer.beneficiary.app.ConfigUrls.*;
  4.  
  5. public class Urls
  6. {
  7. public static String CHECK_VALIDATION_NUMBER;
  8. public static String AUTH_REGISTER;
  9. public static String CHECK_EMAIL;
  10. public static String LOGIN;
  11. public static String LOGOUT;
  12. public static String HAS_COVERAGE;
  13. public static String DELETE_USER;
  14. public static String UPLOAD_PHOTO;
  15. public static String GENERAL_DATA;
  16. public static String QUESTIONS;
  17. public static String MEDICAL_SERVICES;
  18. public static String ADVERTISING;
  19. public static String updatePasswordServerFinal;
  20. public static String updateEmailServerFinal;
  21. public static String recoverPasswordServerFinal;
  22. public static String CUSTOM_DATA;
  23. public static String GET_USER_PROFILE;
  24. public static String PUT_USER_PROFILE;
  25. public static String NOTIFICATIONS;
  26. public static String COVERAGE;
  27. public static String IMAGE_PROCESSING;
  28. public static String SAVE_FILE;
  29. public static String SEARCH_SERVICE;
  30.  
  31. public static void setUrls()
  32. {
  33. CHECK_VALIDATION_NUMBER= serverFinalRegister + "/beneficiaries/checkIdentificationNumbers";
  34. AUTH_REGISTER = serverFinalRegister + "/beneficiaries/register";
  35. CHECK_EMAIL= serverFinalRegister + "/beneficiaries/checkEmail";
  36. LOGIN= serverFinalRegister + wayAuth + "/login";
  37. LOGOUT= serverFinalRegister + wayAuth + "/logout";
  38. HAS_COVERAGE= serverFinalRegister + "/beneficiaries/has-coverage";
  39. DELETE_USER= serverFinalRegister + wayDeleteUser;
  40. UPLOAD_PHOTO= serverFinalRegister + wayUploadImageProfile;
  41.  
  42. GENERAL_DATA = serverFinalGeneralData;
  43. QUESTIONS = serverFinalQuestions;
  44. MEDICAL_SERVICES = serverFinalMedicalServices;
  45. ADVERTISING = serverFinalPublicidad;
  46. updatePasswordServerFinal = serverFinalAuthentication + wayUpdatePassword;
  47. updateEmailServerFinal = serverFinalAuthentication + wayUpdateEmail;
  48. recoverPasswordServerFinal = serverFinalAuthentication + wayRecoverPassword;
  49. CUSTOM_DATA = serverFinalPerfil + auth_CUSTOM_DATA;
  50. GET_USER_PROFILE = serverFinalPerfil + routeGetUserProfile;
  51. GET_USER_PROFILE = serverFinalPerfil + routeGetUserProfile;
  52. PUT_USER_PROFILE = serverFinalPerfil + routePutUserProfile;
  53. NOTIFICATIONS = serverFinalNotifications + routeNotifications;
  54. COVERAGE = serverFinalCoverage + wayAuthCoverage;
  55. IMAGE_PROCESSING = serverFinalImageProcessing + wayImageProcessing;
  56. SAVE_FILE = serverFinalSaveImage + waySaveFile;
  57. SEARCH_SERVICE = serverFinalSearchService + waySearchService;
  58. }
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement