From 62bded91ea52f42a71ad7d7624d5447b1a101420 Mon Sep 17 00:00:00 2001 From: Duarte Meneses Date: Tue, 16 Jun 2015 17:37:13 +0200 Subject: SONAR-6648 Allow to redirect logs to custom stream --- .../org/sonar/api/utils/ProjectTempFolder.java | 54 ---------------------- 1 file changed, 54 deletions(-) delete mode 100644 sonar-plugin-api/src/main/java/org/sonar/api/utils/ProjectTempFolder.java (limited to 'sonar-plugin-api') diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/utils/ProjectTempFolder.java b/sonar-plugin-api/src/main/java/org/sonar/api/utils/ProjectTempFolder.java deleted file mode 100644 index 276be831528..00000000000 --- a/sonar-plugin-api/src/main/java/org/sonar/api/utils/ProjectTempFolder.java +++ /dev/null @@ -1,54 +0,0 @@ -/* - * SonarQube, open source software quality management tool. - * Copyright (C) 2008-2014 SonarSource - * mailto:contact AT sonarsource DOT com - * - * SonarQube 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. - * - * SonarQube 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.utils; - -import javax.annotation.Nullable; - -import java.io.File; - -import org.sonar.api.batch.BatchSide; - - -/** - * Use this component to deal with temp files/folders that have a scope linked to each - * project analysis. - * Root location will typically be the working directory (see sonar.working.directory) - - * @since 5.2 - * - */ -@BatchSide -public interface ProjectTempFolder { - - /** - * Create a directory in temp folder with a random unique name. - */ - File newDir(); - - /** - * Create a directory in temp folder using provided name. - */ - File newDir(String name); - - File newFile(); - - File newFile(@Nullable String prefix, @Nullable String suffix); - -} \ No newline at end of file -- cgit v1.2.3