Bug 527: fixed augment deserialization from xml.
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / codec / AugmentationCodec.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.data.impl.codec;
9
10 import org.opendaylight.yangtools.yang.binding.Augmentation;
11 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
12 import org.opendaylight.yangtools.yang.common.QName;
13 import org.opendaylight.yangtools.yang.data.api.CompositeNode;
14 import org.opendaylight.yangtools.yang.data.api.Node;
15
16 public interface AugmentationCodec<A extends Augmentation<?>> extends DomCodec<A> {
17
18
19     @Override
20     public CompositeNode serialize(ValueWithQName<A> input);
21
22     @Override
23     public ValueWithQName<A> deserialize(Node<?> input);
24
25     public QName getAugmentationQName();
26
27     /**
28      * Check if this codec was created for augmentation with given target node
29      * path.
30      *
31      * @param path
32      *            identifier of augmentation target node
33      * @return true, if this codec is generated for augmentation pointing node
34      *         with given path, false otherwise
35      */
36     boolean isAcceptable(InstanceIdentifier<?> path);
37
38 }