diff options
Diffstat (limited to 'appc-adapters/appc-chef-adapter')
-rw-r--r-- | appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/impl/Utils.java | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/impl/Utils.java b/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/impl/Utils.java index 169b2c13d..0e30d07cb 100644 --- a/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/impl/Utils.java +++ b/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/impl/Utils.java @@ -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); |