Remove yang-test
[controller.git] / opendaylight / config / config-manager / src / test / java / org / opendaylight / controller / config / manager / testingservices / seviceinterface / TestingThreadPoolServiceInterface.java
index 91a4cff415ac3200366deee7c4324a9755423a89..66fdf301d35af914bd8a57b3c3bb802e0925778d 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,
@@ -11,8 +11,9 @@ import org.opendaylight.controller.config.api.annotations.AbstractServiceInterfa
 import org.opendaylight.controller.config.api.annotations.ServiceInterfaceAnnotation;
 import org.opendaylight.controller.config.manager.testingservices.threadpool.TestingThreadPoolIfc;
 
-@ServiceInterfaceAnnotation(value = "testing-threadpool", osgiRegistrationType = TestingThreadPoolIfc.class,
-    namespace = "ns", revision = "foo", localName = "bar")
-public interface TestingThreadPoolServiceInterface extends
-        AbstractServiceInterface {
+@ServiceInterfaceAnnotation(value = TestingThreadPoolServiceInterface.QNAME,
+    osgiRegistrationType = TestingThreadPoolIfc.class,
+    namespace = "ns", revision = "foo", localName = "testing-threadpool")
+public interface TestingThreadPoolServiceInterface extends AbstractServiceInterface {
+    String QNAME = "(ns?revision=foo)testing-threadpool";
 }