[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / backend / openecomp-sdc-action-manager / src / main / java / org / openecomp / sdc / action / ActionManager.java
index 52b0b2a..a16d8eb 100644 (file)
@@ -24,10 +24,14 @@ package org.openecomp.sdc.action;
 import org.openecomp.sdc.action.errors.ActionException;
 import org.openecomp.sdc.action.types.Action;
 import org.openecomp.sdc.action.types.ActionArtifact;
-import org.openecomp.sdc.action.types.EcompComponent;
+import org.openecomp.sdc.action.types.OpenEcompComponent;
 
 import java.util.List;
 
+/**
+ * Created by uttamp on 7/1/2016.
+ */
+
 public interface ActionManager {
   public Action createAction(Action action, String user) throws ActionException;
 
@@ -38,7 +42,7 @@ public interface ActionManager {
   public List<Action> getFilteredActions(String filterType, String filterValue)
       throws ActionException;
 
-  public List<EcompComponent> getEcompComponents() throws ActionException;
+  public List<OpenEcompComponent> getOpenEcompComponents() throws ActionException;
 
   public List<Action> getActionsByActionInvariantUuId(String invariantId) throws ActionException;