204581f147f43d7befc04b2a6136b1bb4e1698fb
[unimgr.git] / impl / src / main / java / org / opendaylight / unimgr / command / EvcUpdateCommand.java
1 /*
2  * Copyright (c) 2015 CableLabs 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.unimgr.command;
9
10 import java.util.Map;
11
12 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.unimgr.rev151012.UniAugmentation;
14 import org.opendaylight.yangtools.yang.binding.DataObject;
15 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
16 import org.slf4j.Logger;
17 import org.slf4j.LoggerFactory;
18
19 public class EvcUpdateCommand extends AbstractUpdateCommand {
20
21     private static final Logger LOG = LoggerFactory.getLogger(EvcUpdateCommand.class);
22
23     public EvcUpdateCommand(DataBroker dataBroker,
24             Map<InstanceIdentifier<?>, DataObject> changes) {
25         super.dataBroker = dataBroker;
26         super.changes = changes;
27     }
28
29     @Override
30     public void execute() {
31         //TODO
32     }
33
34 }