Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * SonarQube
  3. * Copyright (C) 2009-2022 SonarSource SA
  4. * mailto:info AT sonarsource DOT com
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 3 of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public License
  17. * along with this program; if not, write to the Free Software Foundation,
  18. * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  19. */
  20. package org.sonar.alm.client.bitbucket.bitbucketcloud;
  21. import com.google.gson.annotations.SerializedName;
  22. import java.util.List;
  23. public class RepositoryList {
  24. @SerializedName("next")
  25. private String next;
  26. @SerializedName("page")
  27. private Integer page;
  28. @SerializedName("pagelen")
  29. private Integer pagelen;
  30. @SerializedName("values")
  31. private List<Repository> values;
  32. public RepositoryList() {
  33. // http://stackoverflow.com/a/18645370/229031
  34. }
  35. public RepositoryList(String next, List<Repository> values, Integer page, Integer pagelen) {
  36. this.next = next;
  37. this.values = values;
  38. this.page = page;
  39. this.pagelen = pagelen;
  40. }
  41. public String getNext() {
  42. return next;
  43. }
  44. public List<Repository> getValues() {
  45. return values;
  46. }
  47. public Integer getPage() {
  48. return page;
  49. }
  50. public Integer getPagelen() {
  51. return pagelen;
  52. }
  53. }