Seal ItemOrder and MutationBehaviour
[yangtools.git] / common / concepts / src / main / java / org / opendaylight / yangtools / concepts / Mutable.java
index 82b2bb11571f8da41e8ef9f894b766c8f46e1009..f5ad016c3f22cd0f75418b2d817e7132e137de52 100644 (file)
@@ -8,14 +8,11 @@
 package org.opendaylight.yangtools.concepts;
 
 /**
- * Mutable object - object may change it's state during lifecycle.
- *
- * This interface is mutually exclusive with {@link Immutable}  and other
- * {@link MutationBehaviour}s.
+ * Mutable object - object may change it's state during lifecycle. This interface is mutually exclusive
+ * with {@link Immutable} and other {@link MutationBehaviour}s.
  *
  * @author Tony Tkacik
- *
  */
-public interface Mutable extends MutationBehaviour<Mutable> {
-
+public non-sealed interface Mutable extends MutationBehaviour<Mutable> {
+    // Marker interface only
 }