]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-13848 remove deprecated api/favourites/index WS
authorMichal Duda <michal.duda@sonarsource.com>
Fri, 19 Feb 2021 15:31:29 +0000 (16:31 +0100)
committersonartech <sonartech@sonarsource.com>
Fri, 26 Feb 2021 20:07:40 +0000 (20:07 +0000)
server/sonar-webserver-webapi/src/main/java/org/sonar/server/favorite/FavoriteModule.java
server/sonar-webserver-webapi/src/main/java/org/sonar/server/favorite/ws/FavoriteWsModule.java
server/sonar-webserver-webapi/src/main/java/org/sonar/server/favorite/ws/FavouritesWs.java [deleted file]
server/sonar-webserver-webapi/src/test/java/org/sonar/server/favorite/ws/FavoriteWsModuleTest.java

index 038286b2e994b0c8a0381632dfc907cc8de9a21f..97602119a7f2335a4003ac9e2118b266136d5146 100644 (file)
@@ -28,7 +28,6 @@ public class FavoriteModule extends Module {
     add(
       FavoriteFinder.class,
       FavoriteUpdater.class
-
     );
   }
 
index 8dc5bcb43270065ef71eb709cd11bab2b99ad603..a259de306af3255eb9cf2eeb4a898d8d15b5643e 100644 (file)
@@ -25,7 +25,6 @@ public class FavoriteWsModule extends Module {
   @Override
   protected void configureModule() {
     add(
-      FavouritesWs.class,
       FavoritesWs.class,
       AddAction.class,
       RemoveAction.class,
diff --git a/server/sonar-webserver-webapi/src/main/java/org/sonar/server/favorite/ws/FavouritesWs.java b/server/sonar-webserver-webapi/src/main/java/org/sonar/server/favorite/ws/FavouritesWs.java
deleted file mode 100644 (file)
index ea80d18..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * SonarQube
- * Copyright (C) 2009-2021 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.sonar.server.favorite.ws;
-
-import org.sonar.api.server.ws.WebService;
-import org.sonar.server.ws.RemovedWebServiceHandler;
-
-public class FavouritesWs implements WebService {
-
-  @Override
-  public void define(Context context) {
-    NewController controller = context.createController("api/favourites")
-      .setDescription("Removed since 6.3, please use api/favorites instead")
-      .setSince("2.6");
-    controller.createAction("index")
-      .setDescription("The web service is removed and you're invited to use api/favorites instead")
-      .setSince("2.6")
-      .setDeprecatedSince("6.3")
-      .setHandler(RemovedWebServiceHandler.INSTANCE)
-      .setResponseExample(RemovedWebServiceHandler.INSTANCE.getResponseExample());
-    controller.done();
-  }
-
-}
index 1642fd6c96180baf925d793ab4e63ad263961e46..2b6c053f0bea2cea792e09ea9546f12db810cafe 100644 (file)
@@ -30,7 +30,7 @@ public class FavoriteWsModuleTest {
   public void verify_count_of_added_components() {
     ComponentContainer container = new ComponentContainer();
     new FavoriteWsModule().configure(container);
-    assertThat(container.size()).isEqualTo(COMPONENTS_IN_EMPTY_COMPONENT_CONTAINER + 5);
+    assertThat(container.size()).isEqualTo(COMPONENTS_IN_EMPTY_COMPONENT_CONTAINER + 4);
   }