Bump mdsal to 5.0.2
[bgpcep.git] / bgp / openconfig-rp-spi / src / main / java / org / opendaylight / protocol / bgp / openconfig / routing / policy / spi / registry / ActionsRegistryImpl.java
index 3e4265006b0985e9802c38c26f289cba84d69dcd..bb2fb9a8a9bc2cea8959105f46d3ae45bf79eaf0 100644 (file)
@@ -45,6 +45,7 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.type
 import org.opendaylight.yangtools.concepts.AbstractRegistration;
 import org.opendaylight.yangtools.yang.binding.Augmentation;
 import org.opendaylight.yangtools.yang.binding.ChildOf;
+import org.opendaylight.yangtools.yang.common.Uint32;
 
 final class ActionsRegistryImpl {
     @GuardedBy("this")
@@ -126,7 +127,7 @@ final class ActionsRegistryImpl {
             final BgpActions bgpAction = augmentation.getBgpActions();
 
             final SetAsPathPrepend asPrependAction = bgpAction.getSetAsPathPrepend();
-            final Long localPrefPrependAction = bgpAction.getSetLocalPref();
+            final Uint32 localPrefPrependAction = bgpAction.getSetLocalPref();
             final BgpOriginAttrType localOriginAction = bgpAction.getSetRouteOrigin();
             final BgpSetMedType medAction = bgpAction.getSetMed();
             final BgpNextHopType nhAction = bgpAction.getSetNextHop();