vxlanTunnelNamingContext.addName(newVxlanTunnelIndex, dataAfter.getId(), writeContext.getMappingContext());
}
- @Override
- public void updateCurrentAttributes(@Nonnull final InstanceIdentifier<VxlanTunnel> id,
- @Nonnull final VxlanTunnel dataBefore,
- @Nonnull final VxlanTunnel dataAfter, @Nonnull final WriteContext writeContext)
- throws WriteFailedException {
- // Not supported at VPP API level, throw exception
- throw new WriteFailedException.UpdateFailedException(id, dataBefore, dataAfter,
- new UnsupportedOperationException("Vxlan tunnel update is not supported by VPP"));
- }
+ /**
+ * Most VPP apis does not support update, these updates are handled as delete+create pair invocation.
+ * If you want to implement update directly, please @Override method updateCurrentAttributes()
+ */
@Override
public void deleteCurrentAttributes(@Nonnull final InstanceIdentifier<VxlanTunnel> id,
=== New features
+* Lisp
+** http://jira.fd.io/browse/HC2VPP-162[Locator pair] - Uses composite key mapping. Removes need for artificial mapping context
+** http://jira.fd.io/browse/HC2VPP-209[Map Register TTL registration]
+** http://jira.fd.io/browse/HC2VPP-210[Map Server fallback threshold]
+** http://jira.fd.io/browse/HC2VPP-211[CP Protocol messages](TODO)
+* NAT
+** http://jira.fd.io/browse/HC2VPP-197[Post-routing NAT]
+** http://jira.fd.io/browse/HC2VPP-105[NAT 64](In Progress)
+* General
+** Adaptation to ODL Carbon
+
+
=== Removed features
=== Modified features