Add collaboration feature
[sdc.git] / openecomp-be / lib / openecomp-healing-lib / openecomp-sdc-healing-api / src / main / java / org / openecomp / sdc / healing / interfaces / Healer.java
index eb2f9a7..38afd13 100644 (file)
 
 package org.openecomp.sdc.healing.interfaces;
 
-import java.util.Map;
+import org.openecomp.sdc.versioning.dao.types.Version;
 
 /**
  * Created by Talio on 11/29/2016.
  */
 public interface Healer {
-    Object heal(Map<String, Object> healingParams) throws Exception;
+    Object heal(String itemId, Version version) throws Exception;
 }