Sonar Fixes, Formatting
[aaf/authz.git] / cadi / aaf / src / main / java / org / onap / aaf / cadi / oauth / AAFToken.java
index 3889068..099ea28 100644 (file)
@@ -7,9 +7,9 @@
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -29,16 +29,16 @@ import org.onap.aaf.cadi.Hash;
 
 public class AAFToken {
     private static final int CAPACITY = (Long.SIZE*2+Byte.SIZE*3)/8;
-    private static final SecureRandom sr = new SecureRandom(); 
+    private static final SecureRandom sr = new SecureRandom();
 
     public static final String toToken(UUID uuid) {
         long lsb = uuid.getLeastSignificantBits();
         long msb = uuid.getMostSignificantBits();
         int sum=35; // AAF
-        for(int i=0;i<Long.SIZE;i+=8) {
+        for (int i=0;i<Long.SIZE;i+=8) {
             sum+=((lsb>>i) & 0xFF);
         }
-        for(int i=0;i<Long.SIZE;i+=8) {
+        for (int i=0;i<Long.SIZE;i+=8) {
             sum+=((((msb>>i) & 0xFF))<<0xB);
         }
         sum+=(sr.nextInt()&0xEFC00000); // this is just to not leave zeros laying around
@@ -54,11 +54,11 @@ public class AAFToken {
 
     public static final UUID fromToken(String token)  {
         byte[] bytes = Hash.fromHexNo0x(token);
-        if(bytes==null) {
+        if (bytes==null) {
             return null;
         }
         ByteBuffer bb = ByteBuffer.wrap(bytes);
-        if(bb.capacity()!=CAPACITY ) {
+        if (bb.capacity()!=CAPACITY ) {
             return null; // not a CADI Token
         }
         byte b1 = bb.get();
@@ -67,20 +67,20 @@ public class AAFToken {
         long lsb = bb.getLong();
         byte b3 = (byte)(0x3F&bb.get());
         int sum=35;
-        
-        for(int i=0;i<Long.SIZE;i+=8) {
+
+        for (int i=0;i<Long.SIZE;i+=8) {
             sum+=((lsb>>i) & 0xFF);
         }
-        for(int i=0;i<Long.SIZE;i+=8) {
+        for (int i=0;i<Long.SIZE;i+=8) {
             sum+=((((msb>>i) & 0xFF))<<0xB);
         }
 
-        if(b1!=((byte)sum) ||
+        if (b1!=((byte)sum) ||
            b2!=((byte)(sum>>8)) ||
            b3!=((byte)((sum>>16)))) {
-            return null; // not a CADI Token            
+            return null; // not a CADI Token
         }
         return new UUID(msb, lsb);
     }
-    
+
 }