Add attributes to nodes that can take attributes
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / builder / impl / ImmutableContainerNodeSchemaAwareBuilder.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.opendaylight.yangtools.yang.data.api.InstanceIdentifier;
11 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
12 import org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild;
13 import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.DataContainerNodeAttrBuilder;
14 import org.opendaylight.yangtools.yang.data.impl.schema.builder.impl.valid.DataNodeContainerValidator;
15 import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode;
16
17 public final class ImmutableContainerNodeSchemaAwareBuilder extends ImmutableContainerNodeBuilder {
18
19     private final DataNodeContainerValidator validator;
20     // TODO remove schema aware builders, replace by validator called at build() ?
21
22     private ImmutableContainerNodeSchemaAwareBuilder(ContainerSchemaNode schema) {
23         this.validator = new DataNodeContainerValidator(schema);
24         super.withNodeIdentifier(new InstanceIdentifier.NodeIdentifier(schema.getQName()));
25     }
26
27     public static DataContainerNodeAttrBuilder<InstanceIdentifier.NodeIdentifier, ContainerNode> create(ContainerSchemaNode schema) {
28         return new ImmutableContainerNodeSchemaAwareBuilder(schema);
29     }
30
31     @Override
32     public DataContainerNodeAttrBuilder<InstanceIdentifier.NodeIdentifier, ContainerNode> withNodeIdentifier(InstanceIdentifier.NodeIdentifier nodeIdentifier) {
33         throw new UnsupportedOperationException("Node identifier created from schema");
34     }
35
36     @Override
37     public DataContainerNodeAttrBuilder<InstanceIdentifier.NodeIdentifier, ContainerNode> withChild(DataContainerChild<?, ?> child) {
38         validator.validateChild(child.getIdentifier());
39         return super.withChild(child);
40     }
41
42     @Override
43     public ContainerNode build() {
44         // TODO check when statements... somewhere
45         return super.build();
46     }
47 }