Initial code drop of netconf protocol implementation
[controller.git] / opendaylight / netconf / config-netconf-connector / src / main / java / org / opendaylight / controller / netconf / confignetconfconnector / mapping / attributes / fromxml / AttributeConfigElement.java
diff --git a/opendaylight/netconf/config-netconf-connector/src/main/java/org/opendaylight/controller/netconf/confignetconfconnector/mapping/attributes/fromxml/AttributeConfigElement.java b/opendaylight/netconf/config-netconf-connector/src/main/java/org/opendaylight/controller/netconf/confignetconfconnector/mapping/attributes/fromxml/AttributeConfigElement.java
new file mode 100644 (file)
index 0000000..fa249da
--- /dev/null
@@ -0,0 +1,76 @@
+/*
+ * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+
+package org.opendaylight.controller.netconf.confignetconfconnector.mapping.attributes.fromxml;
+
+import javax.management.openmbean.OpenType;
+
+import org.opendaylight.controller.config.yangjmxgenerator.attribute.AttributeIfc;
+import org.opendaylight.controller.netconf.confignetconfconnector.mapping.attributes.resolving.AttributeResolvingStrategy;
+
+import com.google.common.base.Optional;
+
+/**
+ * Parsed xml element containing configuration for one attribute of an instance
+ * of some module. Contains default value extracted from yang file.
+ */
+public class AttributeConfigElement {
+    private final Object dafaultValue;
+    private final Object value;
+
+    private Optional<?> resolvedValue;
+    private Object resolvedDefaultValue;
+    private String jmxName;
+
+    public AttributeConfigElement(Object dafaultValue, Object value) {
+        this.dafaultValue = dafaultValue;
+        this.value = value;
+    }
+
+    public void setJmxName(String jmxName) {
+        this.jmxName = jmxName;
+    }
+
+    public String getJmxName() {
+        return jmxName;
+    }
+
+    public void resolveValue(AttributeResolvingStrategy<?, ? extends OpenType<?>> attributeResolvingStrategy,
+            String attrName) {
+        resolvedValue = attributeResolvingStrategy.parseAttribute(attrName, value);
+        Optional<?> resolvedDefault = attributeResolvingStrategy.parseAttribute(attrName, dafaultValue);
+        resolvedDefaultValue = resolvedDefault.isPresent() ? resolvedDefault.get() : null;
+
+    }
+
+    public static AttributeConfigElement create(AttributeIfc attributeIfc, Object value) {
+        return new AttributeConfigElement(attributeIfc.getNullableDefault(), value);
+    }
+
+    public static AttributeConfigElement createNullValue(AttributeIfc attributeIfc) {
+        return new AttributeConfigElement(attributeIfc.getNullableDefault(), null);
+    }
+
+    public Object getValue() {
+        return value;
+    }
+
+    public Optional<?> getResolvedValue() {
+        return resolvedValue;
+    }
+
+    public Object getResolvedDefaultValue() {
+        return resolvedDefaultValue;
+    }
+
+    @Override
+    public String toString() {
+        return "AttributeConfigElement [dafaultValue=" + dafaultValue + ", value=" + value + "]";
+    }
+
+}