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%2FPeopleModel.java;h=725faf56f1e5663eb66c9936738495e9683167d3;hb=HEAD;hp=e637920e7855c9859ee9cab249f31b20766e9ef2;hpb=5ffd4b46ca00fc8f3d801050670c890117dc0811;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/md/cluster/datastore/model/PeopleModel.java b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/md/cluster/datastore/model/PeopleModel.java index e637920e78..725faf56f1 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/md/cluster/datastore/model/PeopleModel.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/md/cluster/datastore/model/PeopleModel.java @@ -5,68 +5,70 @@ * 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.md.cluster.datastore.model; +import static org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes.mapEntryBuilder; + import org.opendaylight.yangtools.yang.common.QName; 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.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; +import org.opendaylight.yangtools.yang.data.api.schema.SystemMapNode; +import org.opendaylight.yangtools.yang.data.spi.node.ImmutableNodes; -public class PeopleModel { - public static final QName BASE_QNAME = QName.create("urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom:store:test:people", "2014-03-13", - "people"); +public final class PeopleModel { + public static final QName BASE_QNAME = QName.create( + "urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom:store:test:people", "2014-03-13", "people"); - public static final YangInstanceIdentifier BASE_PATH = YangInstanceIdentifier.of(BASE_QNAME); public static final QName PEOPLE_QNAME = QName.create(BASE_QNAME, "people"); public static final QName PERSON_QNAME = QName.create(PEOPLE_QNAME, "person"); public static final QName PERSON_NAME_QNAME = QName.create(PERSON_QNAME, "name"); public static final QName PERSON_AGE_QNAME = QName.create(PERSON_QNAME, "age"); + public static final YangInstanceIdentifier BASE_PATH = YangInstanceIdentifier.of(BASE_QNAME); + public static final YangInstanceIdentifier PERSON_LIST_PATH = BASE_PATH.node(PERSON_QNAME); + private PeopleModel() { + // Hidden on purpose + } - public static NormalizedNode create(){ - - // Create a list builder - CollectionNodeBuilder cars = - ImmutableMapNodeBuilder.create().withNodeIdentifier( - new YangInstanceIdentifier.NodeIdentifier( - PERSON_QNAME)); - - // Create an entry for the person jack - MapEntryNode jack = - ImmutableNodes.mapEntryBuilder(PERSON_QNAME, PERSON_NAME_QNAME, "jack") - .withChild(ImmutableNodes.leafNode(PERSON_NAME_QNAME, "jack")) - .withChild(ImmutableNodes.leafNode(PERSON_AGE_QNAME, 100L)) - .build(); + public static ContainerNode create() { + return ImmutableNodes.newContainerBuilder() + .withNodeIdentifier(new NodeIdentifier(BASE_QNAME)) + .withChild(ImmutableNodes.newSystemMapBuilder() + .withNodeIdentifier(new NodeIdentifier(PERSON_QNAME)) + // Create an entry for the person jack + .withChild(mapEntryBuilder(PERSON_QNAME, PERSON_NAME_QNAME, "jack") + .withChild(ImmutableNodes.leafNode(PERSON_NAME_QNAME, "jack")) + .withChild(ImmutableNodes.leafNode(PERSON_AGE_QNAME, 100L)) + .build()) + // Create an entry for the person jill + .withChild(mapEntryBuilder(PERSON_QNAME, PERSON_NAME_QNAME, "jill") + .withChild(ImmutableNodes.leafNode(PERSON_NAME_QNAME, "jill")) + .withChild(ImmutableNodes.leafNode(PERSON_AGE_QNAME, 200L)) + .build()) + .build()) + .build(); + } - // Create an entry for the person jill - MapEntryNode jill = - ImmutableNodes.mapEntryBuilder(PERSON_QNAME, PERSON_NAME_QNAME, "jill") - .withChild(ImmutableNodes.leafNode(PERSON_NAME_QNAME, "jill")) - .withChild(ImmutableNodes.leafNode(PERSON_AGE_QNAME, 200L)) - .build(); + public static ContainerNode emptyContainer() { + return ImmutableNodes.newContainerBuilder().withNodeIdentifier(new NodeIdentifier(BASE_QNAME)).build(); + } - cars.withChild(jack); - cars.withChild(jill); + public static SystemMapNode newPersonMapNode() { + return ImmutableNodes.newSystemMapBuilder().withNodeIdentifier(new NodeIdentifier(PERSON_QNAME)).build(); + } - return ImmutableContainerNodeBuilder.create() - .withNodeIdentifier(new YangInstanceIdentifier.NodeIdentifier(BASE_QNAME)) - .withChild(cars.build()) + public static MapEntryNode newPersonEntry(final String name) { + return mapEntryBuilder(PERSON_QNAME, PERSON_NAME_QNAME, name) + .withChild(ImmutableNodes.leafNode(PERSON_NAME_QNAME, name)) .build(); - } - public static NormalizedNode emptyContainer(){ - return ImmutableContainerNodeBuilder.create() - .withNodeIdentifier( - new YangInstanceIdentifier.NodeIdentifier(BASE_QNAME)) + public static YangInstanceIdentifier newPersonPath(final String name) { + return YangInstanceIdentifier.builder(PERSON_LIST_PATH) + .nodeWithKey(PERSON_QNAME, PERSON_NAME_QNAME, name) .build(); } - }