Merge "BUG-2243 Fixing invalid hello message handling"
[controller.git] / opendaylight / netconf / config-netconf-connector / src / main / java / org / opendaylight / controller / netconf / confignetconfconnector / mapping / attributes / fromxml / AbstractAttributeReadingStrategy.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 org.opendaylight.controller.netconf.api.NetconfDocumentedException;
12 import org.opendaylight.controller.netconf.util.xml.XmlElement;
13
14 import java.util.List;
15
16 public abstract class AbstractAttributeReadingStrategy implements AttributeReadingStrategy {
17
18     private final String nullableDefault;
19
20     public AbstractAttributeReadingStrategy(String nullableDefault) {
21         this.nullableDefault = nullableDefault;
22     }
23
24     public String getNullableDefault() {
25         return nullableDefault;
26     }
27
28     @Override
29     public AttributeConfigElement readElement(List<XmlElement> configNodes) throws NetconfDocumentedException {
30         if (configNodes.size() == 0){
31             return AttributeConfigElement.createNullValue(postprocessNullableDefault(nullableDefault));
32         }
33         return readElementHook(configNodes);
34     }
35
36     abstract AttributeConfigElement readElementHook(List<XmlElement> configNodes) throws NetconfDocumentedException;
37
38     protected Object postprocessNullableDefault(String nullableDefault) {
39         return nullableDefault;
40     }
41 }