Renamed artifacts to reflect the project's name.
[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.yangtools.yang.binding.DataObject;
14 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
15 import org.slf4j.Logger;
16 import org.slf4j.LoggerFactory;
17
18 public class EvcUpdateCommand extends AbstractUpdateCommand {
19
20     private static final Logger LOG = LoggerFactory.getLogger(EvcUpdateCommand.class);
21
22     public EvcUpdateCommand(DataBroker dataBroker,
23             Map<InstanceIdentifier<?>, DataObject> changes) {
24         super.dataBroker = dataBroker;
25         super.changes = changes;
26     }
27
28     @Override
29     public void execute() {
30         LOG.info("Update has not been implemented yet.");
31     }
32
33 }