Improve ImmutableAugmentationNodeBuilder defensiveness
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / builder / impl / ImmutableAnyXmlNodeSchemaAwareBuilder.java
1 /*
2  * Copyright (c) 2013 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.schema.builder.impl;
9
10 import javax.xml.transform.dom.DOMSource;
11 import org.eclipse.jdt.annotation.NonNull;
12 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
13 import org.opendaylight.yangtools.yang.data.api.schema.DOMSourceAnyxmlNode;
14 import org.opendaylight.yangtools.yang.data.api.schema.builder.NormalizedNodeBuilder;
15 import org.opendaylight.yangtools.yang.model.api.AnyxmlSchemaNode;
16
17 public final class ImmutableAnyXmlNodeSchemaAwareBuilder extends ImmutableAnyXmlNodeBuilder {
18     private ImmutableAnyXmlNodeSchemaAwareBuilder(final AnyxmlSchemaNode schema) {
19         super.withNodeIdentifier(NodeIdentifier.create(schema.getQName()));
20     }
21
22     public static @NonNull NormalizedNodeBuilder<NodeIdentifier, DOMSource, DOMSourceAnyxmlNode> create(
23             final AnyxmlSchemaNode schema) {
24         return new ImmutableAnyXmlNodeSchemaAwareBuilder(schema);
25     }
26
27     @Override
28     public ImmutableAnyXmlNodeBuilder withValue(final DOMSource withValue) {
29         return super.withValue(withValue);
30     }
31
32     @Override
33     public ImmutableAnyXmlNodeBuilder withNodeIdentifier(final NodeIdentifier withNodeIdentifier) {
34         throw new UnsupportedOperationException("Node identifier created from schema");
35     }
36 }