Interface ResponseDb
-
- All Implemented Interfaces:
public interface ResponseDb
-
-
Method Summary
Modifier and Type Method Description abstract UnitupdateResponse(String serverId, String surveyId, String respondentGuid, Map<String, String> responseControl, Map<String, String> response)abstract UnitupdateRespondentValue(String serverId, String surveyId, String respondentGuid, Map<String, String> respondentValue)abstract Map<String, String>getResponse(String serverId, String surveyId, String respondentGuid)abstract Map<String, String>getResponseControl(String serverId, String surveyId, String respondentGuid)abstract Map<String, String>getRespondentValue(String serverId, String surveyId, String respondentGuid)abstract UnitupdateCustomData(String serverId, String surveyId, String respondentGuid, Map<String, String> customData)abstract StringgetCustomData(String serverId, String surveyId, String respondentGuid, String key)abstract Map<String, String>getCustomData(String serverId, String surveyId, String respondentGuid)-
-
Method Detail
-
updateResponse
abstract Unit updateResponse(String serverId, String surveyId, String respondentGuid, Map<String, String> responseControl, Map<String, String> response)
-
updateRespondentValue
abstract Unit updateRespondentValue(String serverId, String surveyId, String respondentGuid, Map<String, String> respondentValue)
-
getResponse
abstract Map<String, String> getResponse(String serverId, String surveyId, String respondentGuid)
-
getResponseControl
abstract Map<String, String> getResponseControl(String serverId, String surveyId, String respondentGuid)
-
getRespondentValue
abstract Map<String, String> getRespondentValue(String serverId, String surveyId, String respondentGuid)
-
updateCustomData
abstract Unit updateCustomData(String serverId, String surveyId, String respondentGuid, Map<String, String> customData)
-
getCustomData
abstract String getCustomData(String serverId, String surveyId, String respondentGuid, String key)
-
-
-
-