diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-11-08 15:46:35 +0100 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-11-15 13:31:49 +0100 |
commit | 305d71f14946d6fa883f1b24ca9ab2499b0cfd04 (patch) | |
tree | 75070717026ea11636e3043a68d4b26e1b9e6a3f /sonar-core/src/test | |
parent | ab31b7a55f57aa9d85b4bae88879c4598c2f6521 (diff) | |
download | sonarqube-305d71f14946d6fa883f1b24ca9ab2499b0cfd04.tar.gz sonarqube-305d71f14946d6fa883f1b24ca9ab2499b0cfd04.zip |
SONAR-8332 add HTTP request UID to WebServer logs
Diffstat (limited to 'sonar-core/src/test')
-rw-r--r-- | sonar-core/src/test/java/org/sonar/core/util/UuidGeneratorImplTest.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sonar-core/src/test/java/org/sonar/core/util/UuidGeneratorImplTest.java b/sonar-core/src/test/java/org/sonar/core/util/UuidGeneratorImplTest.java index b5a3d85d200..21200b0aa40 100644 --- a/sonar-core/src/test/java/org/sonar/core/util/UuidGeneratorImplTest.java +++ b/sonar-core/src/test/java/org/sonar/core/util/UuidGeneratorImplTest.java @@ -1,3 +1,22 @@ +/* + * SonarQube + * Copyright (C) 2009-2016 SonarSource SA + * mailto:contact AT sonarsource DOT com + * + * This program 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, + * 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.core.util; import java.util.Base64; |