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 / AbstractImmutableNormalizedNodeBuilder.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.common.QName;
11 import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier;
12 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
13 import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.NormalizedNodeAttrBuilder;
14
15 import java.util.Collections;
16 import java.util.Map;
17
18 abstract class AbstractImmutableNormalizedNodeBuilder<I extends InstanceIdentifier.PathArgument, V, R extends NormalizedNode<I, ?>>
19         implements NormalizedNodeAttrBuilder<I,V,R> {
20
21     protected V value;
22     protected I nodeIdentifier;
23     protected Map<QName, String> attributes = Collections.emptyMap();
24
25
26     @Override
27     public NormalizedNodeAttrBuilder<I,V,R> withValue(V value) {
28         this.value = value;
29         return this;
30     }
31
32     @Override
33     public NormalizedNodeAttrBuilder<I,V,R> withNodeIdentifier(I nodeIdentifier) {
34         this.nodeIdentifier = nodeIdentifier;
35         return this;
36     }
37
38     public NormalizedNodeAttrBuilder<I,V,R> withAttributes(Map<QName, String> attributes){
39         this.attributes = attributes;
40         return this;
41     }
42 }