bump netty to version 4.0.10.Final
[controller.git] / opendaylight / config / config-api / src / main / java / org / opendaylight / controller / config / spi / Module.java
index b11d5f8beb1620c4d0e86b25c3ee1180565c2536..01f81a3d56260747d5245bef9b1c8698c2a5a226 100644 (file)
@@ -11,7 +11,7 @@ import javax.annotation.concurrent.NotThreadSafe;
 
 import org.opendaylight.controller.config.api.ModuleIdentifier;
 import org.opendaylight.controller.config.api.annotations.RequireInterface;
-import org.opendaylight.protocol.concepts.NamedObject;
+
 
 /**
  * Represents one service that is to be configured. These methods need to be
@@ -28,7 +28,7 @@ import org.opendaylight.protocol.concepts.NamedObject;
  * </p>
  */
 @NotThreadSafe
-public interface Module extends NamedObject<ModuleIdentifier> {
+public interface Module {
     /**
      * This method will be called as first phase in two phase commit. Instance
      * can check attributes, but is not allowed to do any kind of work that
@@ -55,4 +55,6 @@ public interface Module extends NamedObject<ModuleIdentifier> {
      */
     AutoCloseable getInstance();
 
+    ModuleIdentifier getName();
+
 }