Fix checkstyle issues to enforce it
[controller.git] / opendaylight / config / config-manager / src / test / java / org / opendaylight / controller / config / manager / testingservices / parallelapsp / TestingParallelAPSPConfigMXBean.java
index 68f6102987fcb3c8a433df82bf06f70bd5cde190..e215d8853ade8adde5d7ed6e5a6c76c0106643b0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+ * Copyright (c) 2013, 2017 Cisco Systems, 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,
@@ -10,8 +10,9 @@ package org.opendaylight.controller.config.manager.testingservices.parallelapsp;
 import javax.management.ObjectName;
 import org.opendaylight.controller.config.api.annotations.ServiceInterfaceAnnotation;
 
-@ServiceInterfaceAnnotation(value = TestingParallelAPSPConfigMXBean.NAME, osgiRegistrationType = TestingAPSP.class,
-    namespace = "namespace", revision = "rev", localName = TestingParallelAPSPConfigMXBean.NAME)
+@ServiceInterfaceAnnotation(value = TestingParallelAPSPConfigMXBean.NAME,
+    osgiRegistrationType = TestingAPSP.class, namespace = "namespace",
+    revision = "rev", localName = TestingParallelAPSPConfigMXBean.NAME)
 public interface TestingParallelAPSPConfigMXBean {
 
     String NAME = "apsp";
@@ -22,9 +23,8 @@ public interface TestingParallelAPSPConfigMXBean {
 
     String getSomeParam();
 
-    void setSomeParam(String s);
+    void setSomeParam(String string);
 
     // for reporting. this should be moved to runtime jmx bean
     Integer getMaxNumberOfThreads();
-
 }