use of org.opendaylight.yang.gen.v1.urn.opendaylight.group.service.rev130918.GroupUpdatedBuilder in project openflowplugin by opendaylight.
the class GroupNotificationSupplierImpl method updateNotification.
@Override
public GroupUpdated updateNotification(final Group group, final InstanceIdentifier<Group> path) {
Preconditions.checkArgument(group != null);
Preconditions.checkArgument(path != null);
final GroupUpdatedBuilder builder = new GroupUpdatedBuilder(group);
builder.setGroupRef(new GroupRef(path));
builder.setNode(createNodeRef(path));
return builder.build();
}
Aggregations