added implementation of Identifier and Identifiable from yangtools.concepts
[controller.git] / opendaylight / config / config-manager / src / test / java / org / opendaylight / controller / config / manager / testingservices / threadpool / TestingFixedThreadPoolModule.java
index ff33b164c509958743bd0bde313fe71966e159d2..0069b44c19d3d87db9b4f2249efaeea0eeb16975 100644 (file)
@@ -37,10 +37,6 @@ public class TestingFixedThreadPoolModule implements
         this.oldInstance = oldInstance;
     }
 
-    @Override
-    public ModuleIdentifier getName() {
-        return name;
-    }
 
     // attributes
     @Override
@@ -100,4 +96,9 @@ public class TestingFixedThreadPoolModule implements
         return instance;
     }
 
+    @Override
+    public ModuleIdentifier getIdentifier() {
+        return name;
+    }
+
 }