aboutsummaryrefslogtreecommitdiffstats
path: root/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
blob: c9525bfbd813437f0be64171f5240b42741c8f0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.openecomp.sdc.vendorsoftwareproduct.dao;

import com.amdocs.zusammen.datatypes.item.Resolution;
import org.openecomp.sdc.versioning.dao.types.Version;

public interface VspMergeDao {

  boolean isVspModelConflicted(String vspId, Version version);

  void updateVspModelId(String vspId, Version version);

  // TODO: 11/7/2017 change to sdc Resolution
  void updateVspModelConflictResolution(String vspId, Version version, Resolution resolution);

  void applyVspModelConflictResolution(String vspId, Version version);
}