Fix Checkstyle issues
[clamp.git] / src / main / java / org / onap / clamp / authorization / AuthorizationController.java
index 568af48..511b950 100644 (file)
@@ -76,7 +76,7 @@ public class AuthorizationController {
      * @param action
      *        The action of the permissions. e.g. read
      */
-    public void authorize (Exchange camelExchange, String typeVar, String instanceVar, String action) {
+    public void authorize(Exchange camelExchange, String typeVar, String instanceVar, String action) {
         String type = refProp.getStringValue(permPrefix + typeVar);
         String instance = refProp.getStringValue(permInstance);
 
@@ -123,7 +123,7 @@ public class AuthorizationController {
                   principalName, inPermission.getKey());
             authorized = true;
         } else if (hasRole(inPermission.getKeyAllAction())) {
-            auditLogger.info("{} authorized because user has permission with * for action: {}", 
+            auditLogger.info("{} authorized because user has permission with * for action: {}",
                   principalName, inPermission.getKey());
             authorized = true;
         } else {
@@ -133,7 +133,7 @@ public class AuthorizationController {
     }
 
     /**
-     * Verify whether the user has the permission
+     * Verify whether the user has the permission.
      *
      * @param inPermission
      *        The permissions to verify