2 * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved.
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
8 package org.opendaylight.yangtools.yang.data.impl.schema.builder.impl;
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;
16 public final class ImmutableLeafNodeSchemaAwareBuilder<T> extends ImmutableLeafNodeBuilder<T> {
17 private ImmutableLeafNodeSchemaAwareBuilder(final LeafSchemaNode schema) {
18 super.withNodeIdentifier(NodeIdentifier.create(schema.getQName()));
21 public static <T> @NonNull NormalizedNodeBuilder<NodeIdentifier, T, LeafNode<T>> create(
22 final LeafSchemaNode schema) {
23 return new ImmutableLeafNodeSchemaAwareBuilder<>(schema);
27 public NormalizedNodeBuilder<NodeIdentifier, T, LeafNode<T>> withValue(final T withValue) {
28 // TODO: check value type
29 return super.withValue(withValue);
33 public NormalizedNodeBuilder<NodeIdentifier, T, LeafNode<T>> withNodeIdentifier(
34 final NodeIdentifier withNodeIdentifier) {
35 throw new UnsupportedOperationException("Node identifier created from schema");