AAI-1523 Batch reformat aai-auth 88/82888/2
authorKeong Lim <keong.lim@huawei.com>
Thu, 21 Mar 2019 04:34:15 +0000 (15:34 +1100)
committerKeong Lim <keong.lim@huawei.com>
Thu, 11 Apr 2019 03:47:08 +0000 (13:47 +1000)
Use maven plugins from AAI-2198 to do batch reformat of aai-auth
to consistent code style.

Change-Id: I7ea7c6e991b81b3d8b167bdd0889aa5674a42001
Issue-ID: AAI-1523
Signed-off-by: Keong Lim <keong.lim@huawei.com>
aai-auth/src/main/java/org/onap/aaiauth/auth/Auth.java
aai-auth/src/main/java/org/onap/aaiauth/auth/AuthCore.java
aai-auth/src/main/java/org/onap/aaiauth/util/AuthConstants.java

index 8f9b03d..a5b3b67 100644 (file)
@@ -9,7 +9,7 @@
  * 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
+ * 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,
@@ -18,6 +18,7 @@
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aaiauth.auth;
 
 import org.apache.http.cookie.Cookie;
@@ -39,7 +40,8 @@ public class Auth {
     }
 
     /**
-     *  Returns true if the user is allowed to access a function.
+     * Returns true if the user is allowed to access a function.
+     * 
      * @param authUser
      *        - String value of the user.
      * @param authAction
index 2e9424c..e40c2d9 100644 (file)
@@ -9,7 +9,7 @@
  * 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
+ * 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,
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aaiauth.auth;
 
 import com.fasterxml.jackson.databind.JsonNode;
 import com.fasterxml.jackson.databind.ObjectMapper;
+
 import java.io.File;
 import java.util.ArrayList;
 import java.util.HashMap;
 import java.util.List;
 import java.util.Map;
-import org.onap.aaiauth.util.AuthConstants;
 
+import org.onap.aaiauth.util.AuthConstants;
 
 public class AuthCore {
 
@@ -53,8 +55,9 @@ public class AuthCore {
 
     /**
      * Loads the auth file and caches a list of authorized users.
+     * 
      * @param authFilename
-     *        -  Absolute path of the file where authorized users are listed.
+     *        - Absolute path of the file where authorized users are listed.
      */
     public synchronized void loadUsers(String authFilename) throws Exception {
         users = new HashMap<>();
@@ -142,6 +145,7 @@ public class AuthCore {
 
         /**
          * Returns true if the user has permissions for the function, otherwise returns false.
+         * 
          * @param checkFunc
          *        - String value of the function.
          */
@@ -176,6 +180,7 @@ public class AuthCore {
 
         /**
          * Remove the function from the user's list of allowed functions.
+         * 
          * @param delFunc
          *        - String value of the function.
          */
@@ -187,6 +192,7 @@ public class AuthCore {
 
         /**
          * Returns true if the user has permissions to use the function, otherwise returns false.
+         * 
          * @param afunc
          *        - String value of the function.
          */
@@ -207,6 +213,7 @@ public class AuthCore {
 
     /**
      * Returns true if the user is allowed to access a function.
+     * 
      * @param username
      *        - String value of user
      * @param authFunction
index 15f8eba..92fddfe 100644 (file)
@@ -9,7 +9,7 @@
  * 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
+ * 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,
@@ -18,6 +18,7 @@
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aaiauth.util;
 
 public class AuthConstants {