67eb5f7a4f63e3ec1ce8e53464a63051b2c37431
[netconf.git] / plugins / netconf-server-mdsal / src / main / java / org / opendaylight / netconf / server / mdsal / operations / ComponentNormalizedNodeStreamWriter.java
1 /*
2  * Copyright (c) 2019 PANTHEON.tech, s.r.o. 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.netconf.server.mdsal.operations;
9
10 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
11 import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableMetadataNormalizedNodeStreamWriter;
12 import org.opendaylight.yangtools.yang.data.impl.schema.NormalizedNodeMetadataResult;
13
14 /**
15  * This is a single component writer, which results in some amount.
16  */
17 final class ComponentNormalizedNodeStreamWriter extends ImmutableMetadataNormalizedNodeStreamWriter {
18     private ComponentNormalizedNodeStreamWriter(final State state) {
19         super(state);
20     }
21
22     ComponentNormalizedNodeStreamWriter(final NormalizedNodeMetadataResult result) {
23         super(result);
24     }
25
26     NormalizedNode build() {
27         return popState().getDataBuilder().build();
28     }
29 }