X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fcluster%2Fdatastore%2Fmodel%2FCarsModel.java;h=4b379461617eabc5c9cb18041be0579119fbb8bb;hb=HEAD;hp=f633804e66be3f1a5c1b6fe1a8c942f202732765;hpb=2d60632f7cf63712e8357a3cf3fc40d83366e5e6;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/md/cluster/datastore/model/CarsModel.java b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/md/cluster/datastore/model/CarsModel.java index f633804e66..4b37946161 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/md/cluster/datastore/model/CarsModel.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/md/cluster/datastore/model/CarsModel.java @@ -7,17 +7,17 @@ */ package org.opendaylight.controller.md.cluster.datastore.model; -import java.math.BigInteger; import org.opendaylight.yangtools.yang.common.QName; +import org.opendaylight.yangtools.yang.common.Uint64; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; +import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier; import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode; import org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode; import org.opendaylight.yangtools.yang.data.api.schema.MapNode; import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode; +import org.opendaylight.yangtools.yang.data.api.schema.SystemMapNode; +import org.opendaylight.yangtools.yang.data.impl.schema.Builders; import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes; -import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.CollectionNodeBuilder; -import org.opendaylight.yangtools.yang.data.impl.schema.builder.impl.ImmutableContainerNodeBuilder; -import org.opendaylight.yangtools.yang.data.impl.schema.builder.impl.ImmutableMapNodeBuilder; public final class CarsModel { public static final QName BASE_QNAME = QName.create( @@ -32,53 +32,41 @@ public final class CarsModel { public static final YangInstanceIdentifier CAR_LIST_PATH = BASE_PATH.node(CAR_QNAME); private CarsModel() { - + // Hidden on purpose } - public static NormalizedNode create() { - - // Create a list builder - CollectionNodeBuilder cars = - ImmutableMapNodeBuilder.create().withNodeIdentifier( - new YangInstanceIdentifier.NodeIdentifier( - CAR_QNAME)); - - // Create an entry for the car altima - MapEntryNode altima = - ImmutableNodes.mapEntryBuilder(CAR_QNAME, CAR_NAME_QNAME, "altima") - .withChild(ImmutableNodes.leafNode(CAR_NAME_QNAME, "altima")) - .withChild(ImmutableNodes.leafNode(CAR_PRICE_QNAME, new BigInteger("1000"))) - .build(); - - // Create an entry for the car accord - MapEntryNode honda = - ImmutableNodes.mapEntryBuilder(CAR_QNAME, CAR_NAME_QNAME, "accord") - .withChild(ImmutableNodes.leafNode(CAR_NAME_QNAME, "accord")) - .withChild(ImmutableNodes.leafNode(CAR_PRICE_QNAME, new BigInteger("2000"))) - .build(); - - cars.withChild(altima); - cars.withChild(honda); - - return ImmutableContainerNodeBuilder.create() - .withNodeIdentifier(new YangInstanceIdentifier.NodeIdentifier(BASE_QNAME)) - .withChild(cars.build()) + public static ContainerNode create() { + return Builders.containerBuilder() + .withNodeIdentifier(new NodeIdentifier(BASE_QNAME)) + .withChild(Builders.mapBuilder() + .withNodeIdentifier(new NodeIdentifier(CAR_QNAME)) + // Create an entry for the car altima + .withChild(ImmutableNodes.mapEntryBuilder(CAR_QNAME, CAR_NAME_QNAME, "altima") + .withChild(ImmutableNodes.leafNode(CAR_NAME_QNAME, "altima")) + .withChild(ImmutableNodes.leafNode(CAR_PRICE_QNAME, Uint64.valueOf(1000))) + .build()) + // Create an entry for the car accord + .withChild(ImmutableNodes.mapEntryBuilder(CAR_QNAME, CAR_NAME_QNAME, "accord") + .withChild(ImmutableNodes.leafNode(CAR_NAME_QNAME, "accord")) + .withChild(ImmutableNodes.leafNode(CAR_PRICE_QNAME, Uint64.valueOf("2000"))) + .build()) + .build()) .build(); - } - public static NormalizedNode createEmptyCarsList() { + public static NormalizedNode createEmptyCarsList() { return newCarsNode(newCarsMapNode()); } public static ContainerNode newCarsNode(final MapNode carsList) { - return ImmutableContainerNodeBuilder.create().withNodeIdentifier(new YangInstanceIdentifier.NodeIdentifier( - BASE_QNAME)).withChild(carsList).build(); + return Builders.containerBuilder() + .withNodeIdentifier(new NodeIdentifier(BASE_QNAME)) + .withChild(carsList) + .build(); } public static MapNode newCarsMapNode(final MapEntryNode... carEntries) { - CollectionNodeBuilder builder = ImmutableMapNodeBuilder.create() - .withNodeIdentifier(new YangInstanceIdentifier.NodeIdentifier(CAR_QNAME)); + var builder = Builders.mapBuilder().withNodeIdentifier(new NodeIdentifier(CAR_QNAME)); for (MapEntryNode e : carEntries) { builder.withChild(e); } @@ -86,17 +74,15 @@ public final class CarsModel { return builder.build(); } - public static NormalizedNode emptyContainer() { - return ImmutableContainerNodeBuilder.create() - .withNodeIdentifier(new YangInstanceIdentifier.NodeIdentifier(BASE_QNAME)) - .build(); + public static ContainerNode emptyContainer() { + return Builders.containerBuilder().withNodeIdentifier(new NodeIdentifier(BASE_QNAME)).build(); } - public static NormalizedNode newCarMapNode() { + public static SystemMapNode newCarMapNode() { return ImmutableNodes.mapNodeBuilder(CAR_QNAME).build(); } - public static MapEntryNode newCarEntry(final String name, final BigInteger price) { + public static MapEntryNode newCarEntry(final String name, final Uint64 price) { return ImmutableNodes.mapEntryBuilder(CAR_QNAME, CAR_NAME_QNAME, name) .withChild(ImmutableNodes.leafNode(CAR_NAME_QNAME, name)) .withChild(ImmutableNodes.leafNode(CAR_PRICE_QNAME, price)).build();