From 281d426e1e6ed20c24d3e2c8e8e89d07e9260e5b Mon Sep 17 00:00:00 2001 From: Stephane Gamard Date: Thu, 19 Jun 2014 17:21:27 +0200 Subject: [PATCH] SONAR-5329 - Fixed license header --- .../qualityprofile/QProfileActivity.java | 35 +++++++++++++++++++ .../qualityprofile/QProfileActivityQuery.java | 19 ++++++++++ 2 files changed, 54 insertions(+) create mode 100644 sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfileActivity.java 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 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; -- 2.39.5