BUG-432: Start fixing the Registration contract
[yangtools.git] / concepts / src / main / java / org / opendaylight / yangtools / concepts / AbstractObjectRegistration.java
index fa7318973b0e125871252e8d5df05c8a6d536e1d..7c322ac3e2c2b6682fede9fdbfec038e8758df52 100644 (file)
@@ -13,7 +13,7 @@ package org.opendaylight.yangtools.concepts;
  * Invoking the close() method triggers unregistration of the state the method
  * installed.
  */
-public abstract class AbstractObjectRegistration<T> extends AbstractRegistration implements Registration<T> {
+public abstract class AbstractObjectRegistration<T> extends AbstractRegistration implements ObjectRegistration<T> {
     private final T instance;
 
     protected AbstractObjectRegistration(final T instance) {