Committed by
Gerrit Code Review
ONOS-2848 Fix bug of post subnet about class is not registered.
Change-Id: I534bb0628bd65c58a38d7696ae63d5bd56d25c86
Showing
1 changed file
with
2 additions
and
0 deletions
... | @@ -28,6 +28,7 @@ import org.onosproject.store.serializers.KryoNamespaces; | ... | @@ -28,6 +28,7 @@ import org.onosproject.store.serializers.KryoNamespaces; |
28 | import org.onosproject.store.service.Serializer; | 28 | import org.onosproject.store.service.Serializer; |
29 | import org.onosproject.store.service.StorageService; | 29 | import org.onosproject.store.service.StorageService; |
30 | import org.onosproject.vtnrsc.AllocationPool; | 30 | import org.onosproject.vtnrsc.AllocationPool; |
31 | +import org.onosproject.vtnrsc.DefaultAllocationPool; | ||
31 | import org.onosproject.vtnrsc.DefaultSubnet; | 32 | import org.onosproject.vtnrsc.DefaultSubnet; |
32 | import org.onosproject.vtnrsc.HostRoute; | 33 | import org.onosproject.vtnrsc.HostRoute; |
33 | import org.onosproject.vtnrsc.Subnet; | 34 | import org.onosproject.vtnrsc.Subnet; |
... | @@ -89,6 +90,7 @@ public class SubnetManager implements SubnetService { | ... | @@ -89,6 +90,7 @@ public class SubnetManager implements SubnetService { |
89 | HostRoute.class, | 90 | HostRoute.class, |
90 | Subnet.Mode.class, | 91 | Subnet.Mode.class, |
91 | AllocationPool.class, | 92 | AllocationPool.class, |
93 | + DefaultAllocationPool.class, | ||
92 | DefaultSubnet.class, | 94 | DefaultSubnet.class, |
93 | IpAddress.Version.class)) | 95 | IpAddress.Version.class)) |
94 | .build().asJavaMap(); | 96 | .build().asJavaMap(); | ... | ... |
-
Please register or login to post a comment