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 a5127d7027195cb9abe25c44f001236f762897de..191f0809ae622009010336b54f8661db97987330 100644 (file)
@@ -1,18 +1,35 @@
+/*
+ * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
 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);
 }