Merge "Bug 1616: Issues with using container and default values in config yang"
[controller.git] / opendaylight / netconf / config-netconf-connector / src / main / java / org / opendaylight / controller / netconf / confignetconfconnector / mapping / attributes / fromxml / AttributeConfigElement.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
9 package org.opendaylight.controller.netconf.confignetconfconnector.mapping.attributes.fromxml;
10
11 import com.google.common.base.Optional;
12 import org.opendaylight.controller.netconf.api.NetconfDocumentedException;
13 import org.opendaylight.controller.netconf.confignetconfconnector.mapping.attributes.resolving.AttributeResolvingStrategy;
14
15 import javax.management.openmbean.OpenType;
16
17 /**
18  * Parsed xml element containing configuration for one attribute of an instance
19  * of some module. Contains default value extracted from yang file.
20  */
21 public class AttributeConfigElement {
22     private final Object defaultValue;
23     private final Object value;
24
25     private Optional<?> resolvedValue;
26     private Object resolvedDefaultValue;
27     private String jmxName;
28
29     public AttributeConfigElement(Object defaultValue, Object value) {
30         this.defaultValue = defaultValue;
31         this.value = value;
32     }
33
34     public void setJmxName(String jmxName) {
35         this.jmxName = jmxName;
36     }
37
38     public String getJmxName() {
39         return jmxName;
40     }
41
42     public void resolveValue(AttributeResolvingStrategy<?, ? extends OpenType<?>> attributeResolvingStrategy,
43             String attrName) throws NetconfDocumentedException {
44         resolvedValue = attributeResolvingStrategy.parseAttribute(attrName, value);
45         Optional<?> resolvedDefault = attributeResolvingStrategy.parseAttribute(attrName, defaultValue);
46         resolvedDefaultValue = resolvedDefault.isPresent() ? resolvedDefault.get() : null;
47     }
48
49     public static AttributeConfigElement create(Object nullableDefault, Object value) {
50         return new AttributeConfigElement(nullableDefault, value);
51     }
52
53     public static AttributeConfigElement createNullValue(Object nullableDefault) {
54         return new AttributeConfigElement(nullableDefault, null);
55     }
56
57     public Object getValue() {
58         return value;
59     }
60
61     public Object getDefaultValue() {
62         return defaultValue;
63     }
64
65     public Optional<?> getResolvedValue() {
66         return resolvedValue;
67     }
68
69     public Object getResolvedDefaultValue() {
70         return resolvedDefaultValue;
71     }
72
73     @Override
74     public String toString() {
75         return "AttributeConfigElement [defaultValue=" + defaultValue + ", value=" + value + "]";
76     }
77
78 }