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
9 package org.opendaylight.controller.netconf.confignetconfconnector.mapping.attributes.fromxml;
11 import com.google.common.base.Optional;
12 import org.opendaylight.controller.netconf.confignetconfconnector.mapping.attributes.resolving.AttributeResolvingStrategy;
14 import javax.management.openmbean.OpenType;
17 * Parsed xml element containing configuration for one attribute of an instance
18 * of some module. Contains default value extracted from yang file.
20 public class AttributeConfigElement {
21 private final Object dafaultValue;
22 private final Object value;
24 private Optional<?> resolvedValue;
25 private Object resolvedDefaultValue;
26 private String jmxName;
28 public AttributeConfigElement(Object dafaultValue, Object value) {
29 this.dafaultValue = dafaultValue;
33 public void setJmxName(String jmxName) {
34 this.jmxName = jmxName;
37 public String getJmxName() {
41 public void resolveValue(AttributeResolvingStrategy<?, ? extends OpenType<?>> attributeResolvingStrategy,
43 resolvedValue = attributeResolvingStrategy.parseAttribute(attrName, value);
44 Optional<?> resolvedDefault = attributeResolvingStrategy.parseAttribute(attrName, dafaultValue);
45 resolvedDefaultValue = resolvedDefault.isPresent() ? resolvedDefault.get() : null;
48 public static AttributeConfigElement create(Object nullableDefault, Object value) {
49 return new AttributeConfigElement(nullableDefault, value);
52 public static AttributeConfigElement createNullValue(Object nullableDefault) {
53 return new AttributeConfigElement(nullableDefault, null);
56 public Object getValue() {
60 public Optional<?> getResolvedValue() {
64 public Object getResolvedDefaultValue() {
65 return resolvedDefaultValue;
69 public String toString() {
70 return "AttributeConfigElement [dafaultValue=" + dafaultValue + ", value=" + value + "]";