Fix base64 dependency
[appc.git] / appc-event-listener / appc-event-listener-bundle / src / main / java / org / onap / appc / listener / LCM / operation / ProviderOperations.java
index 42206ec..baaa5b5 100644 (file)
@@ -188,7 +188,7 @@ public class ProviderOperations {
     public String setAuthentication(String user, String password) {
         if (user != null && password != null) {
             String authStr = user + ":" + password;
-            basicAuth = new String(Base64.encodeBase64(authStr.getBytes()));
+            basicAuth = new String(org.apache.commons.codec.binary.Base64.encodeBase64(authStr.getBytes()));
         } else {
             basicAuth = null;
         }
@@ -278,4 +278,4 @@ public class ProviderOperations {
         //FIXME is it working as intended?
         return code != null && ((code == 100) || (code == 400));
     }
-}
\ No newline at end of file
+}