[SDC-29] Amdocs OnBoard 1707 initial commit.
[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 / ComponentDao.java
index ca795b4..ef3f2f1 100644 (file)
@@ -29,10 +29,14 @@ import java.util.Collection;
 
 public interface ComponentDao extends VersionableDao, BaseDao<ComponentEntity> {
 
+  ComponentEntity getQuestionnaireData(String vspId, Version version, String componentId);
+
   void updateQuestionnaireData(String vspId, Version version, String componentId,
                                String questionnaireData);
 
   Collection<ComponentEntity> listQuestionnaires(String vspId, Version version);
 
+  Collection<ComponentEntity> listCompositionAndQuestionnaire(String vspId, Version version);
+
   void deleteAll(String vspId, Version version);
 }