aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephane Gamard <stephane.gamard@searchbox.com>2014-06-19 17:21:27 +0200
committerStephane Gamard <stephane.gamard@searchbox.com>2014-06-19 17:21:27 +0200
commit281d426e1e6ed20c24d3e2c8e8e89d07e9260e5b (patch)
tree8b3bb668f82a6945c09c5d34d2f7e49f2410f191
parent1986d617e0424fb4abd6510d330755cf33e04ed0 (diff)
downloadsonarqube-281d426e1e6ed20c24d3e2c8e8e89d07e9260e5b.tar.gz
sonarqube-281d426e1e6ed20c24d3e2c8e8e89d07e9260e5b.zip
SONAR-5329 - Fixed license header
-rw-r--r--sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfileActivity.java35
-rw-r--r--sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfileActivityQuery.java19
2 files changed, 54 insertions, 0 deletions
diff --git a/sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfileActivity.java b/sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfileActivity.java
new file mode 100644
index 00000000000..fdb6ef102c6
--- /dev/null
+++ b/sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfileActivity.java
@@ -0,0 +1,35 @@
+/*
+ * 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.server.qualityprofile;
+
+import org.sonar.core.activity.Activity;
+import org.sonar.server.activity.index.ActivityDoc;
+
+import java.util.Map;
+
+/**
+ * @since 4.4
+ */
+public class QProfileActivity extends ActivityDoc implements Activity {
+
+ protected QProfileActivity(Map<String, Object> fields) {
+ super(fields);
+ }
+}
diff --git a/sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfileActivityQuery.java b/sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfileActivityQuery.java
index 679464ffef2..716339c303d 100644
--- a/sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfileActivityQuery.java
+++ b/sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfileActivityQuery.java
@@ -1,3 +1,22 @@
+/*
+ * 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.server.qualityprofile;
import com.google.common.collect.ImmutableSet;