X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fconfig%2Fconfig-manager%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconfig%2Fmanager%2Ftestingservices%2Fparallelapsp%2FTestingParallelAPSPConfigMXBean.java;h=e215d8853ade8adde5d7ed6e5a6c76c0106643b0;hp=9674a110ce18fd742f8534915fa8713a2ce4b550;hb=f43b01b81319959b1907e3e04537f5169e7f33d8;hpb=30c43b1714eff95a8b7b601888fdb03da7150216 diff --git a/opendaylight/config/config-manager/src/test/java/org/opendaylight/controller/config/manager/testingservices/parallelapsp/TestingParallelAPSPConfigMXBean.java b/opendaylight/config/config-manager/src/test/java/org/opendaylight/controller/config/manager/testingservices/parallelapsp/TestingParallelAPSPConfigMXBean.java index 9674a110ce..e215d8853a 100644 --- a/opendaylight/config/config-manager/src/test/java/org/opendaylight/controller/config/manager/testingservices/parallelapsp/TestingParallelAPSPConfigMXBean.java +++ b/opendaylight/config/config-manager/src/test/java/org/opendaylight/controller/config/manager/testingservices/parallelapsp/TestingParallelAPSPConfigMXBean.java @@ -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, @@ -8,14 +8,14 @@ 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 { - static final String NAME = "apsp"; + String NAME = "apsp"; ObjectName getThreadPool(); @@ -23,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(); - }