Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

PermissionsWsParameters.java 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * SonarQube
  3. * Copyright (C) 2009-2020 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.sonarqube.ws.client.permission;
  21. public class PermissionsWsParameters {
  22. public static final String CONTROLLER = "api/permissions";
  23. public static final String PARAM_PERMISSION = "permission";
  24. public static final String PARAM_GROUP_NAME = "groupName";
  25. public static final String PARAM_GROUP_ID = "groupId";
  26. public static final String PARAM_PROJECT_ID = "projectId";
  27. public static final String PARAM_PROJECT_KEY = "projectKey";
  28. public static final String PARAM_USER_LOGIN = "login";
  29. public static final String PARAM_TEMPLATE_ID = "templateId";
  30. public static final String PARAM_TEMPLATE_NAME = "templateName";
  31. public static final String PARAM_ID = "id";
  32. public static final String PARAM_NAME = "name";
  33. public static final String PARAM_DESCRIPTION = "description";
  34. public static final String PARAM_PROJECT_KEY_PATTERN = "projectKeyPattern";
  35. public static final String PARAM_QUALIFIER = "qualifier";
  36. private PermissionsWsParameters() {
  37. // static utils only
  38. }
  39. }