Merge from ECOMP's repository
[vid.git] / vid-app-common / src / main / java / org / onap / vid / job / command / BaseInstantiationCommand.java
1 package org.onap.vid.job.command;
2
3 import org.onap.vid.job.impl.JobSharedData;
4
5 import java.util.Map;
6
7
8 public abstract class BaseInstantiationCommand extends CommandBase{
9
10
11     protected CommandParentData commandParentData = new CommandParentData();
12
13     protected BaseInstantiationCommand init(JobSharedData sharedData, Map<String, Object> commandData) {
14         super.init(sharedData);
15         commandParentData.initParentData(commandData);
16         return this;
17     }
18 }