/* * SonarQube * Copyright (C) 2009-2025 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ package org.sonarqube.ws.client.components; import java.util.List; import jakarta.annotation.Generated; /** * This is part of the internal API. * This is a POST request. * @see Further information about this action online (including a response example) * @since 5.4 */ @Generated("sonar-ws-generator") public class TreeRequest { private String asc; private String branch; private String component; private String p; private String ps; private String pullRequest; private String q; private List qualifiers; private List s; private String strategy; /** * Possible values: * */ public TreeRequest setAsc(String asc) { this.asc = asc; return this; } public String getAsc() { return asc; } /** * This is part of the internal API. * Example value: "feature/my_branch" */ public TreeRequest setBranch(String branch) { this.branch = branch; return this; } public String getBranch() { return branch; } /** * Example value: "my_project" */ public TreeRequest setComponent(String component) { this.component = component; return this; } public String getComponent() { return component; } /** * Example value: "42" */ public TreeRequest setP(String p) { this.p = p; return this; } public String getP() { return p; } /** * Example value: "20" */ public TreeRequest setPs(String ps) { this.ps = ps; return this; } public String getPs() { return ps; } /** * This is part of the internal API. * Example value: "5461" */ public TreeRequest setPullRequest(String pullRequest) { this.pullRequest = pullRequest; return this; } public String getPullRequest() { return pullRequest; } /** * Example value: "FILE_NAM" */ public TreeRequest setQ(String q) { this.q = q; return this; } public String getQ() { return q; } /** * Possible values: * */ public TreeRequest setQualifiers(List qualifiers) { this.qualifiers = qualifiers; return this; } public List getQualifiers() { return qualifiers; } /** * Example value: "name, path" * Possible values: *
    *
  • "name"
  • *
  • "path"
  • *
  • "qualifier"
  • *
*/ public TreeRequest setS(List s) { this.s = s; return this; } public List getS() { return s; } /** * Possible values: *
    *
  • "all"
  • *
  • "children"
  • *
  • "leaves"
  • *
*/ public TreeRequest setStrategy(String strategy) { this.strategy = strategy; return this; } public String getStrategy() { return strategy; } }