aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorDuarte Meneses <duarte.meneses@sonarsource.com>2015-06-16 17:37:13 +0200
committerDuarte Meneses <duarte.meneses@sonarsource.com>2015-06-24 14:34:21 +0200
commit62bded91ea52f42a71ad7d7624d5447b1a101420 (patch)
tree0d4397c4c894efa5697593d27e9e0b2e4648e337 /sonar-plugin-api
parent12a57c668bb33f808cdae781a8d9308283c3da05 (diff)
downloadsonarqube-62bded91ea52f42a71ad7d7624d5447b1a101420.tar.gz
sonarqube-62bded91ea52f42a71ad7d7624d5447b1a101420.zip
SONAR-6648 Allow to redirect logs to custom stream
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/utils/ProjectTempFolder.java54
1 files changed, 0 insertions, 54 deletions
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