Update MRI projects for Aluminium
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / src / main / java / org / opendaylight / ovsdb / hwvtepsouthbound / transact / TunnelUpdateCommand.java
1 /*
2  * Copyright (c) 2015 China Telecom Beijing Research Institute 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 package org.opendaylight.ovsdb.hwvtepsouthbound.transact;
9
10 import java.util.Collection;
11 import org.opendaylight.mdsal.binding.api.DataTreeModification;
12 import org.opendaylight.ovsdb.lib.operations.TransactionBuilder;
13 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology.Node;
14 import org.slf4j.Logger;
15 import org.slf4j.LoggerFactory;
16
17 public class TunnelUpdateCommand extends AbstractTransactCommand {
18     private static final Logger LOG = LoggerFactory.getLogger(TunnelUpdateCommand.class);
19
20     public TunnelUpdateCommand(HwvtepOperationalState state,
21             Collection<DataTreeModification<Node>> changes) {
22         super(state, changes);
23     }
24
25     @Override
26     public void execute(TransactionBuilder transaction) {
27         //FIXME: Handling it as part of PhysicalSwitchUpdate. Do we need this?
28     }
29 }