Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. package su.vistar.gps.track.shared.dto;
  2.  
  3. import com.google.gwt.user.client.rpc.IsSerializable;
  4.  
  5. /**
  6. * DTO для класса Settings
  7. * @author Gusev Dmitrii (gusevda90@mail.ru)
  8. */
  9. public class SettingsDTO implements IsSerializable {
  10.  
  11. private static final long serialVersionUID = 8263911259979586769L;
  12. private String date_format;
  13. private String google_api_key;
  14. private String yandex_api_key;
  15. private int[] allVehiclesUsersIds;
  16.  
  17. public SettingsDTO() {
  18. }
  19.  
  20. public void setDateFormat(String date_format) {
  21. this.date_format = date_format;
  22. }
  23.  
  24. public String getDateFormat() {
  25. return date_format;
  26. }
  27.  
  28. public void setGoogleApiKey(String google_api_key) {
  29. this.google_api_key = google_api_key;
  30. }
  31.  
  32. public String getGoogleApiKey() {
  33. return google_api_key;
  34. }
  35.  
  36. public void setYandexApiKey(String yandex_api_key) {
  37. this.yandex_api_key = yandex_api_key;
  38. }
  39.  
  40. public String getYandexApiKey() {
  41. return yandex_api_key;
  42. }
  43.  
  44. public int[] getAllVehiclesUsersIds() {
  45. return allVehiclesUsersIds;
  46. }
  47.  
  48. public void setAllVehiclesUsersIds(int[] allVehiclesUsersIds) {
  49. this.allVehiclesUsersIds = allVehiclesUsersIds;
  50. }
  51.  
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement