Merge "BUG-4117: preparation for FlowCapableNode notification impl."
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / services / AbstractMultipartService.java
index 2881d6dcc397cf42332c2c3b9dda185dbc5d5594..f2949cef162ac4cd505401b744e752902d36120c 100644 (file)
@@ -22,6 +22,8 @@ public abstract class AbstractMultipartService<I> extends AbstractService<I, Lis
 
     @Override
     protected final FutureCallback<OfHeader> createCallback(final RequestContext<List<MultipartReply>> context, final Class<?> requestType) {
-        return new MultipartRequestCallback(context, requestType, getDeviceContext());
+        return new MultipartRequestCallback(context, requestType, getDeviceContext(), getEventIdentifier());
     }
+
+
 }