aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws/src/main/java/org/sonarqube/ws/client/views
diff options
context:
space:
mode:
authorLukasz Jarocki <lukasz.jarocki@sonarsource.com>2023-04-12 14:12:30 +0200
committersonartech <sonartech@sonarsource.com>2023-04-12 20:03:18 +0000
commite79143ccb0e1eeff40deb2750d4984d3b18fd442 (patch)
treec392ba41681891205040a7908da113637e5d160d /sonar-ws/src/main/java/org/sonarqube/ws/client/views
parent31feec5fe5a78cf99898555b8ccfac2e85b3115a (diff)
downloadsonarqube-e79143ccb0e1eeff40deb2750d4984d3b18fd442.tar.gz
sonarqube-e79143ccb0e1eeff40deb2750d4984d3b18fd442.zip
SONAR-17620 removed import and export of portfolios
Diffstat (limited to 'sonar-ws/src/main/java/org/sonarqube/ws/client/views')
-rw-r--r--sonar-ws/src/main/java/org/sonarqube/ws/client/views/ViewsService.java34
1 files changed, 1 insertions, 33 deletions
diff --git a/sonar-ws/src/main/java/org/sonarqube/ws/client/views/ViewsService.java b/sonar-ws/src/main/java/org/sonarqube/ws/client/views/ViewsService.java
index eb74613c654..10ee26b1a3e 100644
--- a/sonar-ws/src/main/java/org/sonarqube/ws/client/views/ViewsService.java
+++ b/sonar-ws/src/main/java/org/sonarqube/ws/client/views/ViewsService.java
@@ -140,39 +140,6 @@ public class ViewsService extends BaseService {
*
* This is part of the internal API.
* This is a POST request.
- * @see <a href="https://next.sonarqube.com/sonarqube/web_api/api/views/define">Further information about this action online (including a response example)</a>
- * @since 1.0
- * @deprecated since 9.2
- */
- @Deprecated
- public void define(DefineRequest request) {
- call(
- new PostRequest(path("define"))
- .setParam("def", request.getDef())
- .setMediaType(MediaTypes.JSON)
- ).content();
- }
-
- /**
- *
- * This is part of the internal API.
- * This is a GET request.
- * @see <a href="https://next.sonarqube.com/sonarqube/web_api/api/views/definition">Further information about this action online (including a response example)</a>
- * @since 2.0
- * @deprecated since 9.2
- */
- @Deprecated
- public String definition() {
- return call(
- new GetRequest(path("definition"))
- .setMediaType(MediaTypes.JSON)
- ).content();
- }
-
- /**
- *
- * This is part of the internal API.
- * This is a POST request.
* @see <a href="https://next.sonarqube.com/sonarqube/web_api/api/views/delete">Further information about this action online (including a response example)</a>
* @since 1.0
*/
@@ -473,4 +440,5 @@ public class ViewsService extends BaseService {
.setMediaType(MediaTypes.JSON)
).content();
}
+
}