Fixup breakage introduced by 0.6.0 yang tools
[bgpcep.git] / bgp / parser-api / src / main / java / org / opendaylight / protocol / bgp / parser / BgpTableTypeImpl.java
index a28ac20545e802b125fcd33e03eea82eb2c23641..03763d5464233832881e8a4602926f7994f768df 100644 (file)
@@ -33,6 +33,11 @@ public final class BgpTableTypeImpl implements BgpTableType {
                this.safi = Preconditions.checkNotNull(safi, "Subsequent address family may not be null");
        }
 
+       @Override
+       public Class<BgpTableType> getImplementedInterface() {
+               return BgpTableType.class;
+       }
+
        @Override
        public int hashCode() {
                int ret = 3 * this.afi.hashCode();