]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-7054 Update javadoc concerning hexadecimal characters in token and hash
authorTeryk Bellahsene <teryk.bellahsene@sonarsource.com>
Thu, 26 Nov 2015 13:28:37 +0000 (14:28 +0100)
committerTeryk Bellahsene <teryk.bellahsene@sonarsource.com>
Thu, 26 Nov 2015 13:28:37 +0000 (14:28 +0100)
server/sonar-server/src/main/java/org/sonar/server/usertoken/TokenGenerator.java

index 0fa1c559341f74ff7ae6227faf187a406239d094..1e7221b04a3426c65684e1d7bceba203bf032e96 100644 (file)
@@ -27,6 +27,7 @@ public interface TokenGenerator {
    * subject to change in subsequent SonarQube versions.
    * <br/>
    * Length does not exceed 40 characters (arbitrary value).
+   * Token is composed of hexadecimal characters only (0-9, a-f)
    * <br/>
    * The token is sent through the userid field (login) of HTTP Basic authentication,
    *
@@ -43,6 +44,7 @@ public interface TokenGenerator {
    * subject to change in subsequent SonarQube versions.
    * <br />
    * Length must not exceed 255 characters.
+   * Hash is composed of hexadecimal characters only (0-9, a-f)
    */
   String hash(String token);
 }