X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=opendaylight%2Fnetconf%2Fconfig-netconf-connector%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Fconfignetconfconnector%2Fmapping%2Fattributes%2Ffromxml%2FSimpleAttributeReadingStrategy.java;h=cb8f66081b7dee8b0205b34132ed0b131dac98c6;hb=84248dac9ed8aa37e996e39429c8aa8ece473eaf;hp=a8605243af3f77f587563d453ea69d51401f2aa4;hpb=de12565a7795af98788f8150eb0072f9c985f4a1;p=controller.git diff --git a/opendaylight/netconf/config-netconf-connector/src/main/java/org/opendaylight/controller/netconf/confignetconfconnector/mapping/attributes/fromxml/SimpleAttributeReadingStrategy.java b/opendaylight/netconf/config-netconf-connector/src/main/java/org/opendaylight/controller/netconf/confignetconfconnector/mapping/attributes/fromxml/SimpleAttributeReadingStrategy.java index a8605243af..cb8f66081b 100644 --- a/opendaylight/netconf/config-netconf-connector/src/main/java/org/opendaylight/controller/netconf/confignetconfconnector/mapping/attributes/fromxml/SimpleAttributeReadingStrategy.java +++ b/opendaylight/netconf/config-netconf-connector/src/main/java/org/opendaylight/controller/netconf/confignetconfconnector/mapping/attributes/fromxml/SimpleAttributeReadingStrategy.java @@ -9,29 +9,48 @@ package org.opendaylight.controller.netconf.confignetconfconnector.mapping.attributes.fromxml; import com.google.common.base.Preconditions; -import org.opendaylight.controller.netconf.util.xml.XmlElement; - import java.util.List; +import org.opendaylight.controller.netconf.api.NetconfDocumentedException; +import org.opendaylight.controller.netconf.util.xml.XmlElement; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; public class SimpleAttributeReadingStrategy extends AbstractAttributeReadingStrategy { + private static final Logger logger = LoggerFactory.getLogger(SimpleAttributeReadingStrategy.class); + public SimpleAttributeReadingStrategy(String nullableDefault) { super(nullableDefault); } @Override - AttributeConfigElement readElementHook(List configNodes) { + AttributeConfigElement readElementHook(List configNodes) throws NetconfDocumentedException { XmlElement xmlElement = configNodes.get(0); Preconditions.checkState(configNodes.size() == 1, "This element should be present only once " + xmlElement + " but was " + configNodes.size()); - String textContent = xmlElement.getTextContent(); - - Preconditions.checkNotNull(textContent, "This element should contain text %s", xmlElement); + String textContent = ""; + try{ + textContent = readElementContent(xmlElement); + }catch(IllegalStateException | NullPointerException e) { + // yuma sends for empty value instead of + logger.warn("Ignoring exception caused by failure to read text element", e); + } + + if (null == textContent){ + throw new NetconfDocumentedException(String.format("This element should contain text %s", xmlElement), + NetconfDocumentedException.ErrorType.application, + NetconfDocumentedException.ErrorTag.invalid_value, + NetconfDocumentedException.ErrorSeverity.error); + } return AttributeConfigElement.create(postprocessNullableDefault(getNullableDefault()), postprocessParsedValue(textContent)); } + protected String readElementContent(XmlElement xmlElement) throws NetconfDocumentedException { + return xmlElement.getTextContent(); + } + @Override protected Object postprocessNullableDefault(String nullableDefault) { return nullableDefault;