Adjust to yangtools-2.0.0 changes
[mdsal.git] / binding2 / mdsal-binding2-dom-codec / src / main / java / org / opendaylight / mdsal / binding / javav2 / dom / codec / impl / context / AugmentationNodeContext.java
index 92936436a0dc30ec1df4da2b8a286907777441b1..2dd6c95cd53b9c59d2a0d5dce6838780fb94b187 100644 (file)
@@ -16,7 +16,7 @@ import org.opendaylight.mdsal.binding.javav2.spec.base.TreeNode;
 import org.opendaylight.mdsal.binding.javav2.spec.structural.Augmentation;
 import org.opendaylight.yangtools.yang.data.api.schema.AugmentationNode;
 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
-import org.opendaylight.yangtools.yang.model.api.AugmentationSchema;
+import org.opendaylight.yangtools.yang.model.api.AugmentationSchemaNode;
 
 /**
  * Context for prototype of augmentation node.
@@ -26,7 +26,7 @@ import org.opendaylight.yangtools.yang.model.api.AugmentationSchema;
  */
 @Beta
 public final class AugmentationNodeContext<D extends TreeNode & Augmentation<?>>
-        extends TreeNodeCodecContext<D, AugmentationSchema> {
+        extends TreeNodeCodecContext<D, AugmentationSchemaNode> {
 
     /**
      * Prepare context for augmentation node from prototype.
@@ -34,7 +34,7 @@ public final class AugmentationNodeContext<D extends TreeNode & Augmentation<?>>
      * @param prototype
      *            - codec prototype of augmentation node
      */
-    public AugmentationNodeContext(final DataContainerCodecPrototype<AugmentationSchema> prototype) {
+    public AugmentationNodeContext(final DataContainerCodecPrototype<AugmentationSchemaNode> prototype) {
         super(prototype);
     }