X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=southbound%2Fsouthbound-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyang%2Fgen%2Fv1%2Furn%2Fopendaylight%2Fparams%2Fxml%2Fns%2Fyang%2Fsouthbound%2Fimpl%2Frev141210%2FSouthboundImplModule.java;h=5014d144549a43120d1f984a965540077020b698;hb=db4b7c531bac5f30b34d57bf02fe3a2f310075e8;hp=482455d861cdee5b2f749cec08f879a312c38690;hpb=b53881e3f1bfb2d54c4673af83b61fb3737d69da;p=ovsdb.git diff --git a/southbound/southbound-impl/src/main/java/org/opendaylight/yang/gen/v1/urn/opendaylight/params/xml/ns/yang/southbound/impl/rev141210/SouthboundImplModule.java b/southbound/southbound-impl/src/main/java/org/opendaylight/yang/gen/v1/urn/opendaylight/params/xml/ns/yang/southbound/impl/rev141210/SouthboundImplModule.java index 482455d86..5014d1445 100644 --- a/southbound/southbound-impl/src/main/java/org/opendaylight/yang/gen/v1/urn/opendaylight/params/xml/ns/yang/southbound/impl/rev141210/SouthboundImplModule.java +++ b/southbound/southbound-impl/src/main/java/org/opendaylight/yang/gen/v1/urn/opendaylight/params/xml/ns/yang/southbound/impl/rev141210/SouthboundImplModule.java @@ -7,9 +7,13 @@ */ package org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.southbound.impl.rev141210; +import org.opendaylight.ovsdb.southbound.InstanceIdentifierCodec; import org.opendaylight.ovsdb.southbound.SouthboundProvider; +import org.opendaylight.ovsdb.southbound.SouthboundUtil; public class SouthboundImplModule extends org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.southbound.impl.rev141210.AbstractSouthboundImplModule { + + public SouthboundImplModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) { super(identifier, dependencyResolver); } @@ -25,7 +29,9 @@ public class SouthboundImplModule extends org.opendaylight.yang.gen.v1.urn.opend @Override public java.lang.AutoCloseable createInstance() { - SouthboundProvider provider = new SouthboundProvider(); + SouthboundUtil.setInstanceIdentifierCodec(new InstanceIdentifierCodec(getSchemaServiceDependency(), + getBindingNormalizedNodeSerializerDependency())); + SouthboundProvider provider = new SouthboundProvider(getClusteringEntityOwnershipServiceDependency()); getBrokerDependency().registerProvider(provider); return provider; }