Modified scm section.
[unimgr.git] / impl / src / main / java / org / opendaylight / unimgr / command / AbstractCreateCommand.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
16 public abstract class AbstractCreateCommand implements Command {
17
18     protected Map<InstanceIdentifier<?>, DataObject> changes;
19     protected DataBroker dataBroker;
20
21     @Override
22     public abstract void execute();
23
24 }