Interface SurveyDb
-
- All Implemented Interfaces:
public interface SurveyDb
-
-
Method Summary
Modifier and Type Method Description abstract SurveygetSurvey(String serverId, String surveyId)abstract List<Survey>getSurveyList()abstract List<Survey>getDeletedSurveyList()abstract UnitcreateOrUpdate(String serverId, String surveyId, Integer packageVersion, ConfigsInfo configs, Boolean deleted)abstract UnitdeleteSurvey(String serverId, String surveyId)abstract UnitcleanupSurvey(String serverId, String surveyId)-
-
Method Detail
-
getSurveyList
abstract List<Survey> getSurveyList()
-
getDeletedSurveyList
abstract List<Survey> getDeletedSurveyList()
-
createOrUpdate
abstract Unit createOrUpdate(String serverId, String surveyId, Integer packageVersion, ConfigsInfo configs, Boolean deleted)
-
deleteSurvey
abstract Unit deleteSurvey(String serverId, String surveyId)
-
cleanupSurvey
abstract Unit cleanupSurvey(String serverId, String surveyId)
-
-
-
-