a460ae404d0c80c174af9ee782ba78427a8adf08
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / builder / impl / ImmutableLeafNodeSchemaAwareBuilder.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 org.eclipse.jdt.annotation.NonNull;
11 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
12 import org.opendaylight.yangtools.yang.data.api.schema.LeafNode;
13 import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.NormalizedNodeBuilder;
14 import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode;
15
16 public final class ImmutableLeafNodeSchemaAwareBuilder<T> extends ImmutableLeafNodeBuilder<T> {
17     private ImmutableLeafNodeSchemaAwareBuilder(final LeafSchemaNode schema) {
18         super.withNodeIdentifier(NodeIdentifier.create(schema.getQName()));
19     }
20
21     public static <T> @NonNull NormalizedNodeBuilder<NodeIdentifier, T, LeafNode<T>> create(
22             final LeafSchemaNode schema) {
23         return new ImmutableLeafNodeSchemaAwareBuilder<>(schema);
24     }
25
26     @Override
27     public NormalizedNodeBuilder<NodeIdentifier, T, LeafNode<T>> withValue(final T withValue) {
28         // TODO: check value type
29         return super.withValue(withValue);
30     }
31
32     @Override
33     public NormalizedNodeBuilder<NodeIdentifier, T, LeafNode<T>> withNodeIdentifier(
34             final NodeIdentifier withNodeIdentifier) {
35         throw new UnsupportedOperationException("Node identifier created from schema");
36     }
37 }