DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_catalog / commons / src / main / java / org / onap / sdc / dcae / catalog / commons / Action.java
1 package org.onap.sdc.dcae.catalog.commons;
2
3 import org.onap.sdc.dcae.catalog.commons.Future;
4
5 /**
6  */
7 public interface Action<T> {
8
9         public Future<T> execute();
10
11 }