blob: 152c258f9c80eb2338d144fcf57b92140cb39aab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
|
/*
* 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.rules;
import java.util.List;
import jakarta.annotation.Generated;
/**
* This is part of the internal API.
* This is a POST request.
* @see <a href="https://next.sonarqube.com/sonarqube/web_api/api/rules/update">Further information about this action online (including a response example)</a>
* @since 4.4
*/
@Generated("sonar-ws-generator")
public class UpdateRequest {
private String key;
private String markdownDescription;
private String markdownNote;
private String name;
private List<String> params;
private String remediationFnBaseEffort;
private String remediationFnType;
private String remediationFyGapMultiplier;
private String severity;
private String status;
private List<String> tags;
/**
* This is a mandatory parameter.
* Example value: "javascript:NullCheck"
*/
public UpdateRequest setKey(String key) {
this.key = key;
return this;
}
public String getKey() {
return key;
}
/**
* Example value: "Description of my custom rule"
*/
public UpdateRequest setMarkdownDescription(String markdownDescription) {
this.markdownDescription = markdownDescription;
return this;
}
public String getMarkdownDescription() {
return markdownDescription;
}
/**
* Example value: "my *note*"
*/
public UpdateRequest setMarkdownNote(String markdownNote) {
this.markdownNote = markdownNote;
return this;
}
public String getMarkdownNote() {
return markdownNote;
}
/**
* Example value: "My custom rule"
*/
public UpdateRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return name;
}
/**
*/
public UpdateRequest setParams(List<String> params) {
this.params = params;
return this;
}
public List<String> getParams() {
return params;
}
/**
* Example value: "1d"
*/
public UpdateRequest setRemediationFnBaseEffort(String remediationFnBaseEffort) {
this.remediationFnBaseEffort = remediationFnBaseEffort;
return this;
}
public String getRemediationFnBaseEffort() {
return remediationFnBaseEffort;
}
/**
* Possible values:
* <ul>
* <li>"LINEAR"</li>
* <li>"LINEAR_OFFSET"</li>
* <li>"CONSTANT_ISSUE"</li>
* </ul>
*/
public UpdateRequest setRemediationFnType(String remediationFnType) {
this.remediationFnType = remediationFnType;
return this;
}
public String getRemediationFnType() {
return remediationFnType;
}
/**
* Example value: "3min"
*/
public UpdateRequest setRemediationFyGapMultiplier(String remediationFyGapMultiplier) {
this.remediationFyGapMultiplier = remediationFyGapMultiplier;
return this;
}
public String getRemediationFyGapMultiplier() {
return remediationFyGapMultiplier;
}
/**
* Possible values:
* <ul>
* <li>"INFO"</li>
* <li>"MINOR"</li>
* <li>"MAJOR"</li>
* <li>"CRITICAL"</li>
* <li>"BLOCKER"</li>
* </ul>
*/
public UpdateRequest setSeverity(String severity) {
this.severity = severity;
return this;
}
public String getSeverity() {
return severity;
}
/**
* Possible values:
* <ul>
* <li>"BETA"</li>
* <li>"DEPRECATED"</li>
* <li>"READY"</li>
* <li>"REMOVED"</li>
* </ul>
*/
public UpdateRequest setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return status;
}
/**
* Example value: "java8,security"
*/
public UpdateRequest setTags(List<String> tags) {
this.tags = tags;
return this;
}
public List<String> getTags() {
return tags;
}
}
|