Add collaboration feature
[sdc.git] / openecomp-be / lib / openecomp-sdc-vendor-software-product-lib / openecomp-sdc-vendor-software-product-api / src / main / java / org / openecomp / sdc / vendorsoftwareproduct / dao / VspMergeDao.java
1 package org.openecomp.sdc.vendorsoftwareproduct.dao;
2
3 import com.amdocs.zusammen.datatypes.item.Resolution;
4 import org.openecomp.sdc.versioning.dao.types.Version;
5
6 public interface VspMergeDao {
7
8   boolean isVspModelConflicted(String vspId, Version version);
9
10   void updateVspModelId(String vspId, Version version);
11
12   // TODO: 11/7/2017 change to sdc Resolution
13   void updateVspModelConflictResolution(String vspId, Version version, Resolution resolution);
14
15   void applyVspModelConflictResolution(String vspId, Version version);
16 }