Merge "BUG-1258: fix TreeNode amortization"
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / codec / AugmentationCodec.java
index c1836ed2fd7ec5f3adc57c5a61e019c62f57ae55..191f0809ae622009010336b54f8661db97987330 100644 (file)
@@ -8,18 +8,28 @@
 package org.opendaylight.yangtools.yang.data.impl.codec;
 
 import org.opendaylight.yangtools.yang.binding.Augmentation;
+import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 import org.opendaylight.yangtools.yang.common.QName;
 import org.opendaylight.yangtools.yang.data.api.CompositeNode;
 import org.opendaylight.yangtools.yang.data.api.Node;
 
 public interface AugmentationCodec<A extends Augmentation<?>> extends DomCodec<A> {
-
-
     @Override
-    public CompositeNode serialize(ValueWithQName<A> input);
+    CompositeNode serialize(ValueWithQName<A> input);
 
     @Override
-    public ValueWithQName<A> deserialize(Node<?> input);
+    ValueWithQName<A> deserialize(Node<?> input);
+
+    QName getAugmentationQName();
 
-    public QName getAugmentationQName();
+    /**
+     * Check if this codec was created for augmentation with given target node
+     * path.
+     *
+     * @param path
+     *            identifier of augmentation target node
+     * @return true, if this codec is generated for augmentation pointing node
+     *         with given path, false otherwise
+     */
+    boolean isAcceptable(InstanceIdentifier<?> path);
 }