X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fconfig%2Fconfig-manager-facade-xml%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconfig%2Ffacade%2Fxml%2Fmapping%2Fattributes%2Ffromxml%2FObjectXmlReader.java;h=1878808f3f6701f77b7e75c0623a7ae3085030d8;hb=refs%2Fchanges%2F40%2F62940%2F4;hp=2fe373475fa601dfe93df688a6910e2d48b83624;hpb=b197d75e803beac663033287d769dce62c108490;p=controller.git diff --git a/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/mapping/attributes/fromxml/ObjectXmlReader.java b/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/mapping/attributes/fromxml/ObjectXmlReader.java index 2fe373475f..1878808f3f 100644 --- a/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/mapping/attributes/fromxml/ObjectXmlReader.java +++ b/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/mapping/attributes/fromxml/ObjectXmlReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved. + * Copyright (c) 2015, 2017 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, @@ -31,7 +31,8 @@ public class ObjectXmlReader extends AttributeIfcSwitchStatement> identityMap; - public Map prepareReading(final Map yangToAttrConfig, final Map> identityMap) { + public Map prepareReading(final Map yangToAttrConfig, + final Map> identityMap) { Map strategies = Maps.newHashMap(); this.identityMap = identityMap; @@ -65,13 +66,15 @@ public class ObjectXmlReader extends AttributeIfcSwitchStatement openType) { - SimpleAttributeReadingStrategy innerStrategy = new SimpleAttributeReadingStrategy(getLastAttribute().getNullableDefault()); + SimpleAttributeReadingStrategy innerStrategy = new SimpleAttributeReadingStrategy( + getLastAttribute().getNullableDefault()); return new ArrayAttributeReadingStrategy(getLastAttribute().getNullableDefault(), innerStrategy); } @Override public AttributeReadingStrategy caseJavaCompositeAttribute(final CompositeType openType) { - Preconditions.checkState(openType.keySet().size() == 1, "Unexpected number of elements for open type %s, should be 1", openType); + Preconditions.checkState(openType.keySet().size() == 1, + "Unexpected number of elements for open type %s, should be 1", openType); String mappingKey = openType.keySet().iterator().next(); return new SimpleCompositeAttributeReadingStrategy(getLastAttribute().getNullableDefault(), mappingKey); } @@ -80,9 +83,11 @@ public class ObjectXmlReader extends AttributeIfcSwitchStatement openType) { Preconditions.checkState(openType instanceof CompositeType); Set keys = ((CompositeType) openType).keySet(); - Preconditions.checkState(keys.size() == 1, "Unexpected number of elements for open type %s, should be 1", openType); + Preconditions.checkState(keys.size() == 1, "Unexpected number of elements for open type %s, should be 1", + openType); String mappingKey = keys.iterator().next(); - return new SimpleIdentityRefAttributeReadingStrategy(getLastAttribute().getNullableDefault(), mappingKey, identityMap); + return new SimpleIdentityRefAttributeReadingStrategy(getLastAttribute().getNullableDefault(), mappingKey, + identityMap); } @Override @@ -94,7 +99,7 @@ public class ObjectXmlReader extends AttributeIfcSwitchStatement inner = ((TOAttribute)lastAttribute).getYangPropertiesToTypesMap(); + Map inner = ((TOAttribute) lastAttribute).getYangPropertiesToTypesMap(); Map innerStrategies = Maps.newHashMap(); @@ -103,7 +108,6 @@ public class ObjectXmlReader extends AttributeIfcSwitchStatement openType) { AttributeIfc lastAttribute = getLastAttribute(); Preconditions.checkState(lastAttribute instanceof ListAttribute); - AttributeReadingStrategy innerStrategy = prepareReadingStrategy(key, ((ListAttribute) lastAttribute).getInnerAttribute()); + AttributeReadingStrategy innerStrategy = prepareReadingStrategy(key, + ((ListAttribute) lastAttribute).getInnerAttribute()); return new ArrayAttributeReadingStrategy(lastAttribute.getNullableDefault(), innerStrategy); } @@ -122,5 +127,4 @@ public class ObjectXmlReader extends AttributeIfcSwitchStatement