CCSDK-1556 -Move this constructor to comply with Java Code Conventions 54/92254/1
authorThugutla Sailakshmi <tsaila10@in.ibm.com>
Tue, 30 Jul 2019 09:17:50 +0000 (14:47 +0530)
committerThugutla Sailakshmi <tsaila10@in.ibm.com>
Tue, 30 Jul 2019 09:18:09 +0000 (14:48 +0530)
Move this constructor to comply with Java Code Conventions

Issue-ID: CCSDK-1556
Change-Id: If0aa6b99e52c2a6cae7d61c213ca1af6b7890183
Signed-off-by: Thugutla Sailakshmi <tsaila10@in.ibm.com>
message-router/publisher/sample.client/src/main/java/org/onap/ccsdk/sli/adaptors/messagerouter/publisher/client/impl/ClientImpl.java

index 25fc87e..8ce0669 100755 (executable)
@@ -1,3 +1,26 @@
+/**\r
+ * ============LICENSE_START====================================================\r
+ * org.onap.aaf\r
+ * ===========================================================================\r
+ * Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.\r
+ *\r
+ * Modifications Copyright (C) 2019 IBM.\r
+ * ===========================================================================\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ * \r
+ *      http://www.apache.org/licenses/LICENSE-2.0\r
+ * \r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ * ============LICENSE_END====================================================\r
+ *\r
+ */\r
+\r
 package org.onap.ccsdk.sli.adaptors.messagerouter.publisher.client.impl;\r
 \r
 import org.onap.ccsdk.sli.adaptors.messagerouter.publisher.api.PublisherApi;\r
@@ -8,6 +31,10 @@ public class ClientImpl {
        private static final Logger logger = LoggerFactory.getLogger(ClientImpl.class);\r
        private String topic;\r
        private PublisherApi publisher;\r
+       \r
+       public ClientImpl() {\r
+\r
+       }\r
 \r
        public void setPublisher(PublisherApi publisherApi) {\r
                this.publisher = publisherApi;\r
@@ -17,9 +44,7 @@ public class ClientImpl {
                this.topic = topic;\r
        }\r
 \r
-       public ClientImpl() {\r
-\r
-       }\r
+       \r
 \r
        public void init() {\r
                for (int i = 0; i < 5; i++) {\r