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

CeTaskCharacteristicDto.java 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * SonarQube
  3. * Copyright (C) 2009-2018 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.db.ce;
  21. public class CeTaskCharacteristicDto {
  22. public static final String BRANCH_KEY = "branch";
  23. public static final String BRANCH_TYPE_KEY = "branchType";
  24. public static final String PULL_REQUEST = "pullRequest";
  25. private String uuid;
  26. private String taskUuid;
  27. private String key;
  28. private String value;
  29. public String getUuid() {
  30. return uuid;
  31. }
  32. public CeTaskCharacteristicDto setUuid(String uuid) {
  33. this.uuid = uuid;
  34. return this;
  35. }
  36. public String getTaskUuid() {
  37. return taskUuid;
  38. }
  39. public CeTaskCharacteristicDto setTaskUuid(String taskUuid) {
  40. this.taskUuid = taskUuid;
  41. return this;
  42. }
  43. public String getKey() {
  44. return key;
  45. }
  46. public CeTaskCharacteristicDto setKey(String key) {
  47. this.key = key;
  48. return this;
  49. }
  50. public String getValue() {
  51. return value;
  52. }
  53. public CeTaskCharacteristicDto setValue(String value) {
  54. this.value = value;
  55. return this;
  56. }
  57. }