summaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2012-03-22 19:30:15 +0100
committerSimon Brandhof <simon.brandhof@gmail.com>2012-03-22 19:31:59 +0100
commit46464911a15220d9ca866488922d1645fa9f5e65 (patch)
tree1f4f9af72f5dfc6fc5d4350baeefed918f4fc734 /sonar-plugin-api
parentc152a8c09c6dc62a7cc102721c1a848a493fb68d (diff)
downloadsonarqube-46464911a15220d9ca866488922d1645fa9f5e65.tar.gz
sonarqube-46464911a15220d9ca866488922d1645fa9f5e65.zip
SONAR-3224 remove the need for server restart
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/web/RubyRailsApp.java44
1 files changed, 0 insertions, 44 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/web/RubyRailsApp.java b/sonar-plugin-api/src/main/java/org/sonar/api/web/RubyRailsApp.java
deleted file mode 100644
index 22c05c7bd3c..00000000000
--- a/sonar-plugin-api/src/main/java/org/sonar/api/web/RubyRailsApp.java
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Sonar, open source software quality management tool.
- * Copyright (C) 2008-2012 SonarSource
- * mailto:contact AT sonarsource DOT com
- *
- * Sonar 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.
- *
- * Sonar 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 Sonar; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
- */
-package org.sonar.api.web;
-
-import com.google.common.annotations.Beta;
-import org.sonar.api.ServerExtension;
-
-/**
- * Complete Ruby on Rails application (controllers/helpers/models/views)
- * @since 2.15
- */
-@Beta
-public abstract class RubyRailsApp implements ServerExtension {
-
- /**
- * The app key, ie the plugin key. It does not relate to URLs at all.
- */
- public abstract String getKey();
-
- /**
- * The classloader path to the root directory. It contains a sub-directory named app/.
- * <p>For example if Ruby on Rails controllers are located in /org/sonar/sqale/app/controllers/,
- * then the path is /org/sonar/sqale</p>
- */
- public abstract String getPath();
-
-}