3c69eab073495059af5595243a9a29fc53f24af2
[yangtools.git] / yang / yang-data-codec-gson / src / main / java / org / opendaylight / yangtools / yang / data / codec / gson / JSONStreamWriterURIContext.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.codec.gson;
9
10 import com.google.gson.stream.JsonWriter;
11 import java.io.IOException;
12 import java.net.URI;
13 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
14
15 /**
16  * Abstract class tracking a virtual level of {@link JSONNormalizedNodeStreamWriter}
17  * recursion. It only tracks the namespace associated with this node.
18  */
19 abstract class JSONStreamWriterURIContext extends JSONStreamWriterContext {
20     private final URI namespace;
21
22     protected JSONStreamWriterURIContext(final JSONStreamWriterContext parent, final URI namespace) {
23         super(parent, false);
24         this.namespace = namespace;
25     }
26
27     @Override
28     protected final URI getNamespace() {
29         return namespace;
30     }
31
32     @Override
33     protected void emitStart(final SchemaContext schema, final JsonWriter writer) throws IOException {
34         // No-op
35     }
36 }