aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/job/command/BaseInstantiationCommand.java
blob: 6f78eafabf1521832efb30d6f1c125e6a7cbfac2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.onap.vid.job.command;

import org.onap.vid.job.impl.JobSharedData;

import java.util.Map;


public abstract class BaseInstantiationCommand extends CommandBase{


    protected CommandParentData commandParentData = new CommandParentData();

    protected BaseInstantiationCommand init(JobSharedData sharedData, Map<String, Object> commandData) {
        super.init(sharedData);
        commandParentData.initParentData(commandData);
        return this;
    }
}