Merge "Fixed incorrect test location."
[yangtools.git] / code-generator / binding-data-codec / src / main / java / org / opendaylight / yangtools / binding / data / codec / impl / AugmentationNode.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.binding.data.codec.impl;
9
10 import org.opendaylight.yangtools.yang.common.QNameModule;
11 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
12 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.AugmentationIdentifier;
13 import org.opendaylight.yangtools.yang.model.api.AugmentationSchema;
14
15 public class AugmentationNode extends DataObjectCodecContext<AugmentationSchema> {
16
17     private final YangInstanceIdentifier.PathArgument yangIdentifier;
18
19     public AugmentationNode(final Class<?> cls, final QNameModule namespace,
20             final AugmentationIdentifier identifier, final AugmentationSchema nodeSchema,
21             final CodecContextFactory loader) {
22         super(cls, namespace, nodeSchema, loader);
23         this.yangIdentifier = identifier;
24     }
25
26     @Override
27     public YangInstanceIdentifier.PathArgument getDomPathArgument() {
28         return yangIdentifier;
29     }
30 }