aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws-client
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@gmail.com>2013-04-19 14:20:16 +0200
committerJulien Lancelot <julien.lancelot@gmail.com>2013-04-19 14:20:16 +0200
commitf1b4f46f597616c0f0a2d285eb1c992d5c417faa (patch)
tree305fddc7ef75f3dd52b1fc3be4d26e18c3b23111 /sonar-ws-client
parent7f8c6bc89dbc2f5a1792b17228b1a17b2c8483d6 (diff)
downloadsonarqube-f1b4f46f597616c0f0a2d285eb1c992d5c417faa.tar.gz
sonarqube-f1b4f46f597616c0f0a2d285eb1c992d5c417faa.zip
SONAR-3755 Set issues updated at to the date when issues were loaded from database
Update wrong copyright headers
Diffstat (limited to 'sonar-ws-client')
-rw-r--r--sonar-ws-client/src/main/java/org/sonar/wsclient/internal/package-info.java13
-rw-r--r--sonar-ws-client/src/main/java/org/sonar/wsclient/issue/Issue.java8
-rw-r--r--sonar-ws-client/src/main/java/org/sonar/wsclient/issue/package-info.java13
-rw-r--r--sonar-ws-client/src/test/java/org/sonar/wsclient/MockHttpServer.java18
-rw-r--r--sonar-ws-client/src/test/java/org/sonar/wsclient/MockHttpServerInterceptor.java19
5 files changed, 51 insertions, 20 deletions
diff --git a/sonar-ws-client/src/main/java/org/sonar/wsclient/internal/package-info.java b/sonar-ws-client/src/main/java/org/sonar/wsclient/internal/package-info.java
index 81ddb1053dc..a6ff7c013ed 100644
--- a/sonar-ws-client/src/main/java/org/sonar/wsclient/internal/package-info.java
+++ b/sonar-ws-client/src/main/java/org/sonar/wsclient/internal/package-info.java
@@ -1,21 +1,22 @@
/*
- * Sonar Runner - Implementation
- * Copyright (C) 2011 SonarSource
- * dev@sonar.codehaus.org
+ * Sonar, open source software quality management tool.
+ * Copyright (C) 2008-2012 SonarSource
+ * mailto:contact AT sonarsource DOT com
*
- * This program is free software; you can redistribute it and/or
+ * 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.
*
- * This program is distributed in the hope that it will be useful,
+ * 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 this program; if not, write to the Free Software
+ * License along with Sonar; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
+
@javax.annotation.ParametersAreNonnullByDefault
package org.sonar.wsclient.internal; \ No newline at end of file
diff --git a/sonar-ws-client/src/main/java/org/sonar/wsclient/issue/Issue.java b/sonar-ws-client/src/main/java/org/sonar/wsclient/issue/Issue.java
index f7149189477..f25ed23f00c 100644
--- a/sonar-ws-client/src/main/java/org/sonar/wsclient/issue/Issue.java
+++ b/sonar-ws-client/src/main/java/org/sonar/wsclient/issue/Issue.java
@@ -3,18 +3,18 @@
* Copyright (C) 2008-2012 SonarSource
* mailto:contact AT sonarsource DOT com
*
- * Sonar is free software{} you can redistribute it and/or
+ * 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
+ * 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
+ * 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
+ * License along with Sonar; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.wsclient.issue;
diff --git a/sonar-ws-client/src/main/java/org/sonar/wsclient/issue/package-info.java b/sonar-ws-client/src/main/java/org/sonar/wsclient/issue/package-info.java
index fdc9b467a58..1cfd9125b5d 100644
--- a/sonar-ws-client/src/main/java/org/sonar/wsclient/issue/package-info.java
+++ b/sonar-ws-client/src/main/java/org/sonar/wsclient/issue/package-info.java
@@ -1,21 +1,22 @@
/*
- * Sonar Runner - Implementation
- * Copyright (C) 2011 SonarSource
- * dev@sonar.codehaus.org
+ * Sonar, open source software quality management tool.
+ * Copyright (C) 2008-2012 SonarSource
+ * mailto:contact AT sonarsource DOT com
*
- * This program is free software; you can redistribute it and/or
+ * 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.
*
- * This program is distributed in the hope that it will be useful,
+ * 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 this program; if not, write to the Free Software
+ * License along with Sonar; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
+
@javax.annotation.ParametersAreNonnullByDefault
package org.sonar.wsclient.issue; \ No newline at end of file
diff --git a/sonar-ws-client/src/test/java/org/sonar/wsclient/MockHttpServer.java b/sonar-ws-client/src/test/java/org/sonar/wsclient/MockHttpServer.java
index f39cdf55c0d..40945dd4970 100644
--- a/sonar-ws-client/src/test/java/org/sonar/wsclient/MockHttpServer.java
+++ b/sonar-ws-client/src/test/java/org/sonar/wsclient/MockHttpServer.java
@@ -1,7 +1,21 @@
/*
- * Copyright (C) 2011-2013 SonarSource SA
- * All rights reserved
+ * 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.wsclient;
diff --git a/sonar-ws-client/src/test/java/org/sonar/wsclient/MockHttpServerInterceptor.java b/sonar-ws-client/src/test/java/org/sonar/wsclient/MockHttpServerInterceptor.java
index bdebb27d399..09e00b61f91 100644
--- a/sonar-ws-client/src/test/java/org/sonar/wsclient/MockHttpServerInterceptor.java
+++ b/sonar-ws-client/src/test/java/org/sonar/wsclient/MockHttpServerInterceptor.java
@@ -1,8 +1,23 @@
/*
- * Copyright (C) 2011-2013 SonarSource SA
- * All rights reserved
+ * 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.wsclient;
import org.junit.rules.ExternalResource;