Merge 1806 code of vid-common
[vid.git] / vid-app-common / src / main / java / org / onap / vid / job / command / AggregateStateCommand.java
1 package org.onap.vid.job.command;
2
3 import org.onap.vid.job.JobCommand;
4 import org.onap.vid.job.NextCommand;
5 import org.springframework.beans.factory.config.ConfigurableBeanFactory;
6 import org.springframework.context.annotation.Scope;
7 import org.springframework.stereotype.Component;
8
9 import java.util.Collections;
10 import java.util.Map;
11
12 @Component
13 @Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
14 public class AggregateStateCommand implements JobCommand {
15
16     @Override
17     public NextCommand call() {
18         return null;
19     }
20
21     @Override
22     public Map<String, Object> getData() {
23         return Collections.emptyMap();
24     }
25
26 }