Add unit test for ueb-listener
[ccsdk/sli/northbound.git] / ueb-listener / src / main / java / org / onap / ccsdk / sli / northbound / uebclient / SdncUebClient.java
index e8ffc33..d298904 100644 (file)
@@ -2,15 +2,15 @@
  * ============LICENSE_START=======================================================
  * openECOMP : SDN-C
  * ================================================================================
- * Copyright (C) 2017 ONAP Intellectual Property. All rights
- *                                             reserved.
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights
+ *                     reserved.
  * ================================================================================
  * 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
- * 
+ *
  *      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,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -30,12 +30,10 @@ import org.slf4j.LoggerFactory;
 
 public class SdncUebClient {
 
-       private static final Logger LOG = LoggerFactory
-                       .getLogger(SdncUebConfiguration.class);
+       private static final Logger LOG = LoggerFactory.getLogger(SdncUebConfiguration.class);
 
        public static void main(String[] args) {
-               IDistributionClient client = DistributionClientFactory
-                               .createDistributionClient();
+               IDistributionClient client = DistributionClientFactory.createDistributionClient();
 
                SdncUebConfiguration config = new SdncUebConfiguration();
 
@@ -46,17 +44,14 @@ public class SdncUebClient {
 
                LOG.info("Initializing ASDC distribution client");
 
-               IDistributionClientResult result = client.init(
-                               config, cb);
+               IDistributionClientResult result = client.init(config, cb);
 
-               LOG.info("Initialized ASDC distribution client - results = "
-                               + result.getDistributionMessageResult());
+               LOG.info("Initialized ASDC distribution client - results = {}", result.getDistributionMessageResult());
 
                if (result.getDistributionActionResult() == DistributionActionResultEnum.SUCCESS) {
                        LOG.info("Starting client...");
                        IDistributionClientResult start = client.start();
-                       LOG.info("Client startup result = "
-                                       + start.getDistributionMessageResult());
+                       LOG.info("Client startup result = {}", start.getDistributionMessageResult());
                }