Merge "standalone demo fixes for SFC model changes"
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / src / main / java / org / opendaylight / ovsdb / hwvtepsouthbound / transact / PhysicalLocatorUpdateCommand.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
9 package org.opendaylight.ovsdb.hwvtepsouthbound.transact;
10
11 import java.util.Collection;
12
13 import org.opendaylight.controller.md.sal.binding.api.DataTreeModification;
14 import org.opendaylight.ovsdb.lib.operations.TransactionBuilder;
15 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology.Node;
16 import org.slf4j.Logger;
17 import org.slf4j.LoggerFactory;
18
19 public class PhysicalLocatorUpdateCommand extends AbstractTransactCommand {
20     private static final Logger LOG = LoggerFactory.getLogger(PhysicalLocatorUpdateCommand.class);
21
22     public PhysicalLocatorUpdateCommand(HwvtepOperationalState state,
23             Collection<DataTreeModification<Node>> changes) {
24         super(state, changes);
25     }
26
27     @Override
28     public void execute(TransactionBuilder transaction) {
29         //TODO
30     }
31
32 }