X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-rest-connector%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Frest%2Fimpl%2FJsonReader.java;h=4d9958ee6b4720b66fe5fc2a286e754630274e20;hb=567792806ed799ac649cc125bffb4debde40d254;hp=f4c5034776ec1e83fa5022c7a68223d139d3060a;hpb=1ff9939abc7a4072b07df6b79516fe344b1b42e3;p=controller.git diff --git a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/rest/impl/JsonReader.java b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/rest/impl/JsonReader.java index f4c5034776..4d9958ee6b 100644 --- a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/rest/impl/JsonReader.java +++ b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/rest/impl/JsonReader.java @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2014 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.sal.rest.impl; import java.io.InputStream; @@ -6,10 +13,11 @@ import java.net.URI; import java.util.Map.Entry; import java.util.Set; +import org.opendaylight.controller.sal.rest.impl.RestUtil.PrefixMapingFromJson; import org.opendaylight.controller.sal.restconf.impl.CompositeNodeWrapper; import org.opendaylight.controller.sal.restconf.impl.EmptyNodeWrapper; -import org.opendaylight.controller.sal.restconf.impl.SimpleNodeWrapper; import org.opendaylight.controller.sal.restconf.impl.IdentityValuesDTO; +import org.opendaylight.controller.sal.restconf.impl.SimpleNodeWrapper; import com.google.common.collect.Lists; import com.google.gson.JsonElement; @@ -63,8 +71,7 @@ class JsonReader { private void addChildToParent(String childName, JsonElement childType, CompositeNodeWrapper parent) { if (childType.isJsonObject()) { - CompositeNodeWrapper child = new CompositeNodeWrapper(getNamespaceFor(childName), - getLocalNameFor(childName)); + CompositeNodeWrapper child = new CompositeNodeWrapper(getNamespaceFor(childName), getLocalNameFor(childName)); parent.addValue(child); for (Entry childOfChild : childType.getAsJsonObject().entrySet()) { addChildToParent(childOfChild.getKey(), childOfChild.getValue(), child); @@ -88,7 +95,8 @@ class JsonReader { private URI getNamespaceFor(String jsonElementName) { String[] moduleNameAndLocalName = jsonElementName.split(":"); - if (moduleNameAndLocalName.length != 2) { // it is not "moduleName:localName" + // it is not "moduleName:localName" + if (moduleNameAndLocalName.length != 2) { return null; } return URI.create(moduleNameAndLocalName[0]); @@ -96,21 +104,28 @@ class JsonReader { private String getLocalNameFor(String jsonElementName) { String[] moduleNameAndLocalName = jsonElementName.split(":"); - if (moduleNameAndLocalName.length != 2) { // it is not "moduleName:localName" + // it is not "moduleName:localName" + if (moduleNameAndLocalName.length != 2) { return jsonElementName; } return moduleNameAndLocalName[1]; } - /** - * @param value - * value of json element - * @return if value is "moduleName:localName" then {@link IdentityValuesDTO} else - * the same string as parameter "value" - */ private Object resolveValueOfElement(String value) { + // it could be instance-identifier Built-In Type + if (value.startsWith("/")) { + IdentityValuesDTO resolvedValue = RestUtil.asInstanceIdentifier(value, new PrefixMapingFromJson()); + if (resolvedValue != null) { + return resolvedValue; + } + } + // it could be identityref Built-In Type URI namespace = getNamespaceFor(value); - return namespace == null ? value : new IdentityValuesDTO(namespace.toString(), getLocalNameFor(value), null); + if (namespace != null) { + return new IdentityValuesDTO(namespace.toString(), getLocalNameFor(value), null,value); + } + // it is not "prefix:value" but just "value" + return value; } }