Deprecate schema-aware builders
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / builder / impl / ImmutableMapNodeSchemaAwareBuilder.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 static java.util.Objects.requireNonNull;
11
12 import java.util.Collections;
13 import org.eclipse.jdt.annotation.NonNull;
14 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
15 import org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode;
16 import org.opendaylight.yangtools.yang.data.api.schema.MapNode;
17 import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.CollectionNodeBuilder;
18 import org.opendaylight.yangtools.yang.data.impl.schema.builder.impl.valid.DataValidationException;
19 import org.opendaylight.yangtools.yang.model.api.ListSchemaNode;
20
21 @Deprecated(since = "6.0.7", forRemoval = true)
22 public class ImmutableMapNodeSchemaAwareBuilder extends ImmutableMapNodeBuilder {
23     private final ListSchemaNode schema;
24
25     protected ImmutableMapNodeSchemaAwareBuilder(final ListSchemaNode schema) {
26         this.schema = requireNonNull(schema);
27         super.withNodeIdentifier(NodeIdentifier.create(schema.getQName()));
28     }
29
30     protected ImmutableMapNodeSchemaAwareBuilder(final ListSchemaNode schema, final ImmutableMapNode node) {
31         super(node);
32         this.schema = requireNonNull(schema);
33         super.withNodeIdentifier(NodeIdentifier.create(schema.getQName()));
34     }
35
36     public static @NonNull CollectionNodeBuilder<MapEntryNode, MapNode> create(final ListSchemaNode schema) {
37         return new ImmutableMapNodeSchemaAwareBuilder(schema);
38     }
39
40     public static @NonNull CollectionNodeBuilder<MapEntryNode, MapNode> create(final ListSchemaNode schema,
41             final MapNode node) {
42         if (!(node instanceof ImmutableMapNode)) {
43             throw new UnsupportedOperationException(String.format("Cannot initialize from class %s", node.getClass()));
44         }
45
46         return new ImmutableMapNodeSchemaAwareBuilder(schema, (ImmutableMapNode) node);
47     }
48
49     @Override
50     public CollectionNodeBuilder<MapEntryNode, MapNode> withChild(final MapEntryNode child) {
51         DataValidationException.checkLegalChild(schema.getQName().equals(child.getNodeType()), child.getIdentifier(),
52             schema, Collections.singleton(schema.getQName()));
53         return super.withChild(child);
54     }
55
56     @Override
57     public CollectionNodeBuilder<MapEntryNode, MapNode> withNodeIdentifier(final NodeIdentifier withNodeIdentifier) {
58         throw new UnsupportedOperationException("Node identifier created from schema");
59     }
60 }