SchemaTracker needs only PathArgument
[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     @Override
18     CompositeNode serialize(ValueWithQName<A> input);
19
20     @Override
21     ValueWithQName<A> deserialize(Node<?> input);
22
23     QName getAugmentationQName();
24
25     /**
26      * Check if this codec was created for augmentation with given target node
27      * path.
28      *
29      * @param path
30      *            identifier of augmentation target node
31      * @return true, if this codec is generated for augmentation pointing node
32      *         with given path, false otherwise
33      */
34     boolean isAcceptable(InstanceIdentifier<?> path);
35 }