Bug 8675: Fix a design flaw of the new XML parser
[yangtools.git] / yang / yang-data-util / src / main / java / org / opendaylight / yangtools / yang / data / util / SimpleNodeDataWithSchema.java
1 /*
2  * Copyright (c) 2016 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.util;
9
10 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
11
12 /**
13  * Utility class used for tracking parser state as needed by a StAX-like parser.
14  * This class is to be used only by respective XML and JSON parsers in yang-data-codec-xml and yang-data-codec-gson.
15  *
16  * <p>
17  * Represents a simple node with value (anyxml, leaf, leaf-list entry).
18  */
19 public abstract class SimpleNodeDataWithSchema extends AbstractNodeDataWithSchema {
20
21     private Object value;
22
23     public SimpleNodeDataWithSchema(final DataSchemaNode dataSchemaNode) {
24         super(dataSchemaNode);
25     }
26
27     public void setValue(final Object value) {
28         this.value = value;
29     }
30
31     public Object getValue() {
32         return value;
33     }
34
35 }