aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2017-01-19 11:00:29 +0100
committerJulien Lancelot <julien.lancelot@sonarsource.com>2017-01-24 18:36:49 +0100
commita44a90d1b181b92a8d7e85a7c945518ed2bca38b (patch)
tree30cd4165c211cd992a8b69c7f3a3087732cea8c3 /sonar-plugin-api
parentcb1bf8f96e441de011ad58f6495049933a9dbace (diff)
downloadsonarqube-a44a90d1b181b92a8d7e85a7c945518ed2bca38b.tar.gz
sonarqube-a44a90d1b181b92a8d7e85a7c945518ed2bca38b.zip
SONAR-8684 Remove Java classes related to rails
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/component/RubyComponentService.java36
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/user/RubyUserService.java49
2 files changed, 0 insertions, 85 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/component/RubyComponentService.java b/sonar-plugin-api/src/main/java/org/sonar/api/component/RubyComponentService.java
deleted file mode 100644
index 441364646ed..00000000000
--- a/sonar-plugin-api/src/main/java/org/sonar/api/component/RubyComponentService.java
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * SonarQube
- * Copyright (C) 2009-2016 SonarSource SA
- * mailto:contact 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.api.component;
-
-import javax.annotation.CheckForNull;
-import org.sonar.api.server.ServerSide;
-
-/**
- * @since 3.6
- * @deprecated in 6.0
- */
-@ServerSide
-@Deprecated
-public interface RubyComponentService {
-
- @CheckForNull
- Component findByKey(String key);
-
-}
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/user/RubyUserService.java b/sonar-plugin-api/src/main/java/org/sonar/api/user/RubyUserService.java
deleted file mode 100644
index 4609105e709..00000000000
--- a/sonar-plugin-api/src/main/java/org/sonar/api/user/RubyUserService.java
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * SonarQube
- * Copyright (C) 2009-2016 SonarSource SA
- * mailto:contact 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.api.user;
-
-import org.sonar.api.server.ServerSide;
-
-import javax.annotation.CheckForNull;
-
-import java.util.List;
-import java.util.Map;
-
-/**
- * @since 3.6
- */
-@ServerSide
-public interface RubyUserService {
-
- @CheckForNull
- User findByLogin(String login);
-
- /**
- * Search for users
- * <br>
- * Optional parameters are:
- * <ul>
- * <li><code>s</code> to match all the logins or names containing this search query</li>
- * <li><code>logins</code>, as an array of strings (['simon', 'julien']) or a comma-separated list of logins ('simon,julien')</li>
- * <li><code>includeDeactivated</code> as a boolean. By Default deactivated users are excluded from query.</li>
- * </ul>
- */
- List<User> find(Map<String, Object> params);
-}