Fix checkstyle 54/84454/2
authorRobert Varga <[email protected]>
Sat, 14 Sep 2019 17:41:13 +0000 (19:41 +0200)
committerRobert Varga <[email protected]>
Sat, 14 Sep 2019 17:56:08 +0000 (19:56 +0200)
Updated checkstyle is finding these, fix them up.

Change-Id: Ie5130c172807e52d74c8ffa424e1b076c46bd4bf
Signed-off-by: Robert Varga <[email protected]>
39 files changed:
sfc-netconf/src/main/java/org/opendaylight/sfc/netconf/provider/listener/SfcNetconfNodeDataListener.java
sfc-ovs/src/main/java/org/opendaylight/sfc/ovs/api/SfcOvsDataStoreAPI.java
sfc-ovs/src/main/java/org/opendaylight/sfc/ovs/listener/SfcOvsNodeDataListener.java
sfc-ovs/src/main/java/org/opendaylight/sfc/ovs/listener/SfcOvsSffEntryDataListener.java
sfc-ovs/src/main/java/org/opendaylight/sfc/ovs/provider/SfcOvsRpc.java
sfc-ovs/src/main/java/org/opendaylight/sfc/ovs/provider/SfcOvsUtil.java
sfc-ovs/src/test/java/org/opendaylight/sfc/ovs/AbstractDataStoreManager.java
sfc-ovs/src/test/java/org/opendaylight/sfc/ovs/listener/SfcOvsNodeDataListenerTest.java
sfc-ovs/src/test/java/org/opendaylight/sfc/ovs/listener/SfcOvsSffEntryDataListenerTest.java
sfc-renderers/sfc-openflow-renderer/src/main/java/org/opendaylight/sfc/renderers/openflow/SfcOfRenderer.java
sfc-renderers/sfc-openflow-renderer/src/main/java/org/opendaylight/sfc/renderers/openflow/listeners/SfcOfAbstractDataListener.java
sfc-renderers/sfc-vpp-renderer/src/main/java/org/opendaylight/sfc/renderers/vpp/listeners/VppNodeListener.java
sfc-statistics/src/main/java/org/opendaylight/sfc/statistics/SfcStatisticsFactory.java
sfc-statistics/src/main/java/org/opendaylight/sfc/statistics/handlers/RspStatisticsHandler.java
sfc-statistics/src/main/java/org/opendaylight/sfc/statistics/handlers/SfStatisticsHandler.java
sfc-statistics/src/main/java/org/opendaylight/sfc/statistics/handlers/SfcStatisticsHandlerBase.java
sfc-statistics/src/main/java/org/opendaylight/sfc/statistics/handlers/SffStatisticsHandler.java
sfc-statistics/src/main/java/org/opendaylight/sfc/statistics/readers/SfcIosXeStatisticsReader.java
sfc-statistics/src/main/java/org/opendaylight/sfc/statistics/readers/SfcOpenFlowLogicalSffStatisticsReader.java
sfc-statistics/src/main/java/org/opendaylight/sfc/statistics/readers/SfcOpenFlowStatisticsReader.java
sfc-statistics/src/main/java/org/opendaylight/sfc/statistics/readers/SfcStatisticsReaderBase.java
sfc-statistics/src/main/java/org/opendaylight/sfc/statistics/readers/SfcVppStatisticsReader.java
sfc-statistics/src/main/java/org/opendaylight/sfc/statistics/rpc/SfcStatisticsRpc.java
sfc-statistics/src/test/java/org/opendaylight/sfc/statistics/SfcStatisticsFactoryTest.java
sfc-statistics/src/test/java/org/opendaylight/sfc/statistics/handlers/RspStatisticsHandlerTest.java
sfc-statistics/src/test/java/org/opendaylight/sfc/statistics/readers/SfcOpenFlowStatisticsReaderTest.java
sfc-statistics/src/test/java/org/opendaylight/sfc/statistics/rpc/SfcStatisticsRpcTest.java
sfc-statistics/src/test/java/org/opendaylight/sfc/statistics/testutils/AbstractDataStoreManager.java
sfc-statistics/src/test/java/org/opendaylight/sfc/statistics/testutils/SfcStatisticsTestUtils.java
sfc-vnfm-tacker/src/main/java/org/opendaylight/sfc/tacker/dto/Attributes.java
sfc-vnfm-tacker/src/main/java/org/opendaylight/sfc/tacker/dto/Auth.java
sfc-vnfm-tacker/src/main/java/org/opendaylight/sfc/tacker/dto/Error.java
sfc-vnfm-tacker/src/main/java/org/opendaylight/sfc/tacker/dto/PasswordCredentials.java
sfc-vnfm-tacker/src/main/java/org/opendaylight/sfc/tacker/dto/TackerError.java
sfc-vnfm-tacker/src/main/java/org/opendaylight/sfc/tacker/dto/TackerRequest.java
sfc-vnfm-tacker/src/main/java/org/opendaylight/sfc/tacker/dto/TackerResponse.java
sfc-vnfm-tacker/src/main/java/org/opendaylight/sfc/tacker/dto/Tenant.java
sfc-vnfm-tacker/src/main/java/org/opendaylight/sfc/tacker/dto/Token.java
sfc-vnfm-tacker/src/main/java/org/opendaylight/sfc/tacker/dto/Vnf.java

index d6101c685b5b665350328bf7c3ac0cf60fcddc6e..4bafc953b11d1761e38482d78e214ae7659c0e2d 100755 (executable)
@@ -5,16 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
-/**
- * DataChangeListener attached to the OVSDB southbound operational datastore
- * <p>
- *
- * @author Reinaldo Penno ([email protected])
- * @version 0.1
- * @since 2015-02-13
- */
-
 package org.opendaylight.sfc.netconf.provider.listener;
 
 import static org.opendaylight.sfc.provider.SfcProviderDebug.printTraceStart;
@@ -56,6 +46,14 @@ import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
+/**
+ * DataChangeListener attached to the OVSDB southbound operational datastore.
+ *
+ * <p>
+ * @author Reinaldo Penno ([email protected])
+ * @version 0.1
+ * @since 2015-02-13
+ */
 @Singleton
 public class SfcNetconfNodeDataListener extends AbstractSyncDataTreeChangeListener<Node> {
 
index 506a039525f787874fd1af753093c4a56878df0a..8905b0699d29555c2a1129ef996aef54eec107a1 100644 (file)
@@ -5,14 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
-/**
- * DataChangeListener attached to the SFC SFF config datastore
- *
- * @author Andrej Kincel ([email protected])
- * @version 0.1
- * @since 2015-04-13
- */
 package org.opendaylight.sfc.ovs.api;
 
 import com.google.common.base.Preconditions;
@@ -31,6 +23,13 @@ import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
+/**
+ * DataChangeListener attached to the SFC SFF config datastore.
+ *
+ * @author Andrej Kincel ([email protected])
+ * @version 0.1
+ * @since 2015-04-13
+ */
 public final class SfcOvsDataStoreAPI {
 
     private static final Logger LOG = LoggerFactory.getLogger(SfcOvsDataStoreAPI.class);
index 2baab3de7d59e1597f6316a45181a02ced1ee863..6b974a6b38c257455883f5bd003cf4635e47d6b6 100755 (executable)
@@ -5,16 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
-/**
- * DataChangeListener attached to the OVSDB southbound operational datastore
- *
- * <p>
- * @author Reinaldo Penno ([email protected])
- * @version 0.1
- * @since 2015-02-13
- */
-
 package org.opendaylight.sfc.ovs.listener;
 
 import com.google.common.base.Optional;
@@ -50,7 +40,14 @@ import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-
+/**
+ * DataChangeListener attached to the OVSDB southbound operational datastore.
+ *
+ * <p>
+ * @author Reinaldo Penno ([email protected])
+ * @version 0.1
+ * @since 2015-02-13
+ */
 @Singleton
 public class SfcOvsNodeDataListener extends AbstractSyncDataTreeChangeListener<Node> {
 
index 84e40d7cc2514d53f3a78d5a0dfc3c91f7d10dbc..0a5dc7786a068fc658555231b68ffa5f6793164b 100755 (executable)
@@ -5,15 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
-/**
- * DataChangeListener attached to the SFC SFF config datastore
- *
- * @author Andrej Kincel ([email protected])
- * @version 0.1
- * @since 2015-02-13
- */
-
 package org.opendaylight.sfc.ovs.listener;
 
 import java.util.List;
@@ -39,6 +30,13 @@ import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
+/**
+ * DataChangeListener attached to the SFC SFF config datastore.
+ *
+ * @author Andrej Kincel ([email protected])
+ * @version 0.1
+ * @since 2015-02-13
+ */
 @Singleton
 public class SfcOvsSffEntryDataListener extends AbstractSyncDataTreeChangeListener<ServiceFunctionForwarder> {
 
index d7defac0f8758539df955341e54b53e4ac9df34e..9e9e43899818327a9df795a5a3bebcd64e19b060 100644 (file)
@@ -5,16 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
-/**
- * Class for handling SFC OVS RPCs
- * <p>
- *
- * @author Andrej Kincel ([email protected])
- * @version 0.1
- * @since 2015-03-31
- */
-
 package org.opendaylight.sfc.ovs.provider;
 
 import com.google.common.base.Preconditions;
@@ -36,6 +26,14 @@ import org.opendaylight.yangtools.yang.common.RpcError;
 import org.opendaylight.yangtools.yang.common.RpcResult;
 import org.opendaylight.yangtools.yang.common.RpcResultBuilder;
 
+/**
+ * Class for handling SFC OVS RPCs.
+ *
+ * <p>
+ * @author Andrej Kincel ([email protected])
+ * @version 0.1
+ * @since 2015-03-31
+ */
 public class SfcOvsRpc implements ServiceFunctionForwarderOvsService, AutoCloseable {
 
     private static final String OVSDB_NODE_PREFIX = "ovsdb://";
index cb3bf31ed77b2e03cde509aadf01c4d42d44c5bf..68251fd6bf082276244acb0603837ca4f096f4be 100644 (file)
@@ -5,16 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
-/**
- * SfcOvsUtil class contains various wrapper and utility methods
- * <p>
- *
- * @author Andrej Kincel ([email protected])
- * @version 0.1
- * @since 2015-04-01
- */
-
 package org.opendaylight.sfc.ovs.provider;
 
 import com.google.common.base.Preconditions;
@@ -68,6 +58,14 @@ import org.opendaylight.yangtools.yang.binding.KeyedInstanceIdentifier;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
+/**
+ * SfcOvsUtil class contains various wrapper and utility methods.
+ *
+ * <p>
+ * @author Andrej Kincel ([email protected])
+ * @version 0.1
+ * @since 2015-04-01
+ */
 public final class SfcOvsUtil {
 
     private static final Logger LOG = LoggerFactory.getLogger(SfcOvsUtil.class);
index efabcf3569ac1a2042e775e6a50bf42690ee912d..98ae096cde97d9be8f0050b972b383ff97e0122e 100644 (file)
@@ -1,4 +1,4 @@
-/**
+/*
  * Copyright (c) 2017 Ericsson Spain and others. All rights reserved.
  *
  * This program and the accompanying materials are made available under the
index aa1c55f87b978a4595530de4d290ced95c5338ef..f56ad966ccfa5b16b6a577d50bf71652934fe802 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2017, 2018 Ericsson Spain and others. All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.ovs.listener;
 
 import static org.junit.Assert.assertNotNull;
index 9e4d12b49bcb714e5a1b6bf78a5915c0c9feacdf..99eda618b580b20e2b41ab81917197e375a31c1d 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2017, 2018 Ericsson Spain and others. All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.ovs.listener;
 
 import static org.junit.Assert.assertNotNull;
index 7ca1dfaa3963620919594f40053665762920e443..473c9649568a79598c701595ac3eb70c4a3dc3c1 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2014, 2017 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.renderers.openflow;
 
 import javax.annotation.PreDestroy;
index 6b3ac0ab5b9bc318cf3d469a3c2c40cf5a98071e..1b90daaed507045bfe7676c63c411a1c58441a09 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2014, 2017 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.renderers.openflow.listeners;
 
 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
index cc5892287d40895775d790d0360bab0d744b54c3..e0f645dc8de7fa4ea2ea91fb0aec7927a17b3a3f 100644 (file)
@@ -5,10 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
-/**
- * DataChangeListener attached to the Network Topology
- */
 package org.opendaylight.sfc.renderers.vpp.listeners;
 
 import javax.inject.Inject;
@@ -26,6 +22,9 @@ import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
+/**
+ * DataChangeListener attached to the Network Topology.
+ */
 @Singleton
 public class VppNodeListener extends AbstractSyncDataTreeChangeListener<Node> {
 
index 2c60b30b4049a9a385fe8f067466b82a4f07b58a..7ac4694bdffa979f8f63940623ceb2265248ea5e 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2017 Inocybe Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.statistics;
 
 import java.util.List;
@@ -41,7 +40,6 @@ import org.slf4j.LoggerFactory;
  * from the type of stats (RSP, SFF, or SF) being collected,
  * thus increasing the cohesion of both the stats reader
  * classes and the stats handler classes.
- *
  */
 public final class SfcStatisticsFactory {
 
index 632e842e54816596192778d10cfa6444a3856fa3..a3880b15718b3159329ccca2322fb10033a42cd6 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2017 Inocybe Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.statistics.handlers;
 
 import java.util.Collections;
index dfd40c57da0e4090b6ebf42e80cc70a831c787dd..fa55c7118df798a5f37563619d802867c7836f13 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2017 Inocybe Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.statistics.handlers;
 
 import java.util.Collections;
index 5b4c782c699a72e07c67cb6d3d5f3a0f914f738d..0e41d4afa54dd4b0910779b0d9490a18c1836e35 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2017 Inocybe Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.statistics.handlers;
 
 import java.math.BigInteger;
index 8c16746655a50d45f68a059737ab640d453c52c1..dc0c0ef96e8c7130e5c359f895c05f0b5fcf61fd 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2017 Inocybe Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.statistics.handlers;
 
 import java.util.Collections;
index b078e2bea7f4418cf2eb6675d927817d36c4a74f..558b8e6dc4d3453924ee663b0d208c2ab502d58a 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2017 Inocybe Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.statistics.readers;
 
 import java.util.Optional;
index cc3bab449bead0b76183aebfc2a77131c7f63067..05b50663b41c8235c80999c9358c7e2138fa5bfe 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2017 Inocybe Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.statistics.readers;
 
 import java.util.List;
index d24af8684830a40acb327ab084fba3b6807cfce3..2745dd8900effabef80f01e90965bf4149613dc0 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2017 Inocybe Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.statistics.readers;
 
 import java.util.Optional;
index 12af04c2a15ebe99f9fa08bfd7830341ab0961ae..ffd19db93d28777b72a3bc8444f026eaff88b62f 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2017 Inocybe Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.statistics.readers;
 
 import java.util.Optional;
index 7068ce19628788a6107eb7dea985498d705790f0..d83ef5808859aff5ce066a9ef2df190c6545f195 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2017 Inocybe Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.statistics.readers;
 
 import java.util.Optional;
index fe08d7ccd5030c165381fc829c110b4b6d6a4f7a..4550510ee561142ea9323c387f5c80f996d573fa 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2017 Inocybe Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.statistics.rpc;
 
 import com.google.common.util.concurrent.Futures;
index e643efe21b363d320bf59fd9cd06543ae1788bf9..972f426eb0bdaf96193a3d8f7d225f17e056b3c2 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2018 Inocybe Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.statistics;
 
 import static org.junit.Assert.assertEquals;
index 004cc930c52d6678a32a7fe3769d13c80bb69803..b938f04fd1efd822543d6a6adf10c339984eb0f3 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2018 Inocybe Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.statistics.handlers;
 
 import static org.junit.Assert.assertEquals;
@@ -25,7 +24,6 @@ import org.opendaylight.yang.gen.v1.urn.cisco.params.xml.ns.yang.sfc.rsp.rev1407
 import org.opendaylight.yang.gen.v1.urn.cisco.params.xml.ns.yang.sfc.sff.rev140701.service.function.forwarders.ServiceFunctionForwarder;
 import org.opendaylight.yang.gen.v1.urn.cisco.params.xml.ns.yang.sfc.ss.rev140701.service.statistics.group.StatisticByTimestamp;
 
-
 public class RspStatisticsHandlerTest extends AbstractDataStoreManager {
 
     private SfcStatisticsTestUtils sfcStatsTestUtils;
index e4172abce28d19572c4c95f9482f0fb02a4c1bc2..7c381d862bb6dde6b13aa4949ee07a368baf8b5d 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2018 Inocybe Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.statistics.readers;
 
 import static org.junit.Assert.assertEquals;
index b2bc077c39a5001e53c77d38685eeb363b0c11d8..45e1910dfb70ba0bd094fc5d088fb177e432abaa 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2018 Inocybe Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.statistics.rpc;
 
 import static org.junit.Assert.assertEquals;
@@ -34,7 +33,6 @@ import org.opendaylight.yang.gen.v1.urn.inocybe.params.xml.ns.yang.sfc.stats.ops
 import org.opendaylight.yangtools.yang.common.RpcError;
 import org.opendaylight.yangtools.yang.common.RpcResult;
 
-
 public class SfcStatisticsRpcTest extends AbstractDataStoreManager {
 
     private static String RSP_NAME_NON_EXISTANT = "RspDoesntExist";
index 2da4f4a5f05022585aa56e0ebd450ef7ec5bc5ab..395829014c11676ef1e34d0ad28050f5b972cd69 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2018 Inocybe Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.statistics.testutils;
 
 import static com.google.common.base.Preconditions.checkState;
index 1ba98f12c139721aa07a5cf87c1607b26f67d984..6c1dafc772eaeb6239fda87479d23dca2d859f3d 100644 (file)
@@ -1,11 +1,10 @@
-/**
+/*
  * Copyright (c) 2018 Inocybe Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.statistics.testutils;
 
 import static org.junit.Assert.assertEquals;
index 5aab3a284b2eb33e1d63c377f1bfdd0c4f1a8f15..f01cacd2de29547f8e0553dbb6848abb8ad696d1 100644 (file)
@@ -5,7 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.tacker.dto;
 
 import com.google.gson.annotations.SerializedName;
@@ -25,7 +24,9 @@ public final class Attributes {
     private String failurePolicy;
 
     // used by GSON
-    private Attributes() {}
+    private Attributes() {
+
+    }
 
     private Attributes(AttributesBuilder attributesBuilder) {
         this.serviceType = attributesBuilder.getServiceType();
index 64d554abf8e9fdc701c2e7430430181b023b0d3b..f2eb17f879b6d0baf35785b5bbbd37f57400bcb8 100644 (file)
@@ -5,7 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.tacker.dto;
 
 public final class Auth {
@@ -14,7 +13,9 @@ public final class Auth {
     private PasswordCredentials passwordCredentials;
 
     // used by GSON
-    private Auth() {}
+    private Auth() {
+
+    }
 
     private Auth(AuthBuilder builder) {
         this.tenantName = builder.getTenantName();
index aa9db2b7c73439ea4957a73c8a05eb7fd9094caa..686676c902e0d7eb927a7fa2b0adc7afdf6cc854 100644 (file)
@@ -5,7 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.tacker.dto;
 
 public class Error {
@@ -15,7 +14,9 @@ public class Error {
     private String detail;
 
     // used by GSON
-    private Error() {}
+    private Error() {
+
+    }
 
     public Error(ErrorBuilder builder) {
         this.message = builder.getMessage();
index 8e498a90355989b13647ae0904465608f552c7ec..6cf2c888976d1939635565c5cfa7d3a7b74b3246 100644 (file)
@@ -5,7 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.tacker.dto;
 
 public class PasswordCredentials {
@@ -14,7 +13,9 @@ public class PasswordCredentials {
     private String password;
 
     // used by GSON
-    private PasswordCredentials() {}
+    private PasswordCredentials() {
+
+    }
 
     /**
      * Constructor for PasswordCredential class with two parameters.
index 8c93bb147760dff77f905a616b208df65b21029a..c37b97acbaabbc0a41dcecaff61acc41ab5b3199 100644 (file)
@@ -5,7 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.tacker.dto;
 
 import com.google.gson.annotations.SerializedName;
@@ -16,7 +15,9 @@ public class TackerError {
     private Error tackerError;
 
     // used by GSON
-    private TackerError() {}
+    private TackerError() {
+
+    }
 
     public TackerError(Error err) {
         this.tackerError = err;
index c10a75728c61617b11868c5e7a92dca9c579aa88..b5afaf96f146172a43ae77cc6f9a67e2738438f0 100644 (file)
@@ -5,7 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.tacker.dto;
 
 public final class TackerRequest {
@@ -14,7 +13,9 @@ public final class TackerRequest {
     private Vnf vnf;
 
     // used by GSON
-    private TackerRequest() {}
+    private TackerRequest() {
+
+    }
 
     private TackerRequest(TackerRequestBuilder builder) {
         auth = builder.getAuth();
index a36e27c525cc3bc5e0cb615a71b07423ef3fe2bd..efa6fd2b7efee28cba77acd1925562fb100b667c 100644 (file)
@@ -5,7 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.tacker.dto;
 
 public final class TackerResponse {
@@ -13,7 +12,9 @@ public final class TackerResponse {
     private Vnf vnf;
 
     // used by GSON
-    private TackerResponse() {}
+    private TackerResponse() {
+
+    }
 
     private TackerResponse(TackerResponseBuilder builder) {
         vnf = builder.getVnf();
index 4dedf5e76b6e8cba8325bdb377b6d2256d03e8ad..eaf612031f5beaf615c4dad74e3f00faa058c988 100644 (file)
@@ -5,7 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.tacker.dto;
 
 public final class Tenant {
@@ -16,7 +15,9 @@ public final class Tenant {
     private String name;
 
     // used by GSON
-    private Tenant() {}
+    private Tenant() {
+
+    }
 
     private Tenant(TenantBuilder builder) {
         this.description = builder.getDescription();
index 9c5be94f7ccd8cb5aa1155098bd9c1da98164a4e..00337282c1a7e2c691f22c2ff810a9f7e02ed05c 100644 (file)
@@ -5,7 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.tacker.dto;
 
 import com.google.gson.annotations.SerializedName;
@@ -28,7 +27,9 @@ public final class Token {
     private String[] auditIds;
 
     // used by GSON
-    private Token() {}
+    private Token() {
+
+    }
 
     private Token(TokenBuilder builder) {
         this.issuedAt = builder.issuedAt;
index 9892bd0983465e2d2313d1470c94d575a488369a..409a145252fd8c7b37cb9f667511df3156f7c9fb 100644 (file)
@@ -5,7 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.sfc.tacker.dto;
 
 import com.google.gson.annotations.SerializedName;
@@ -31,7 +30,9 @@ public final class Vnf {
     private String vnfdId;
 
     // used by GSON
-    private Vnf() {}
+    private Vnf() {
+
+    }
 
     private Vnf(VnfBuilder builder) {
         status = builder.getStatus();