From 46464911a15220d9ca866488922d1645fa9f5e65 Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Thu, 22 Mar 2012 19:30:15 +0100 Subject: SONAR-3224 remove the need for server restart --- .../main/java/org/sonar/api/web/RubyRailsApp.java | 44 ---------------------- 1 file changed, 44 deletions(-) delete mode 100644 sonar-plugin-api/src/main/java/org/sonar/api/web/RubyRailsApp.java (limited to 'sonar-plugin-api') 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/. - *

For example if Ruby on Rails controllers are located in /org/sonar/sqale/app/controllers/, - * then the path is /org/sonar/sqale

- */ - public abstract String getPath(); - -} -- cgit v1.2.3