OF port creation and update config side implementation
[genius.git] / itm / itm-impl / src / main / java / org / opendaylight / genius / itm / confighelpers / ItmOfPortRemoveWorker.java
1 /*
2  * Copyright (c) 2020 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.genius.itm.confighelpers;
10
11 import com.google.common.util.concurrent.ListenableFuture;
12 import java.util.List;
13 import java.util.Map;
14 import java.util.concurrent.Callable;
15 import org.opendaylight.mdsal.binding.api.DataBroker;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.genius.itm.op.rev160406.dpn.tep.config.OfDpnTep;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.genius.itm.op.rev160406.dpn.tep.config.OfDpnTepKey;
18
19 public class ItmOfPortRemoveWorker implements Callable<List<? extends ListenableFuture<?>>> {
20     public ItmOfPortRemoveWorker(Map<OfDpnTepKey, OfDpnTep> oldDpnTepList, DataBroker dataBroker,
21                                  ItmOfTunnelDeleteWorker itmOfTunnelDeleteWorker) {
22     }
23
24     @Override
25     public List<ListenableFuture<Void>> call() throws Exception {
26         return null;
27     }
28 }