Fixed sonar issue in Utils.java 31/75231/2
authorezhil <ezhrajam@in.ibm.com>
Thu, 3 Jan 2019 16:42:43 +0000 (22:12 +0530)
committerPatrick Brady <patrick.brady@att.com>
Thu, 3 Jan 2019 22:40:23 +0000 (22:40 +0000)
Change-Id: I5edf48443c10f08200b0ea376194a9a8fc6dc29a
Issue-ID: APPC-1302
Signed-off-by: ezhil <ezhrajam@in.ibm.com>
appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/impl/Utils.java

index 169b2c1..0e30d07 100644 (file)
@@ -6,6 +6,7 @@
  * ================================================================================
  * Copyright (C) 2017 Amdocs
  * =============================================================================
+ *
  * 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
@@ -75,13 +76,7 @@ public class Utils {
             byte[] signature = instance.sign();
             outStr = Base64.encode(signature);
             String tmp = new String(outStr);
-        } catch (InvalidKeyException e) {
-            logger.error(e.getMessage());
-        } catch (IOException e) {
-            logger.error(e.getMessage());
-        } catch (SignatureException e) {
-            logger.error(e.getMessage());
-        } catch (NoSuchAlgorithmException e) {
+        } catch (InvalidKeyException | IOException | SignatureException | NoSuchAlgorithmException e) {
             logger.error(e.getMessage());
         }
         return new String(outStr);