Package lumis.service.questionnaire
Class QuestionnaireResource
- java.lang.Object
-
- lumis.service.questionnaire.QuestionnaireResource
-
-
Constructor Summary
Constructors Constructor Description QuestionnaireResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Response
getAnswersReport(String questionnaireId)
Returns the answers report of the given questionnaire in the required format.
-
-
-
Method Detail
-
getAnswersReport
@GET @Path("/questionnaires/{questionnaireId:[A-F0-9]{32}}/answers/report.csv") @Produces("text/csv") public Response getAnswersReport(@PathParam("questionnaireId") @NotNull String questionnaireId) throws Exception
Returns the answers report of the given questionnaire in the required format.- Parameters:
questionnaireId
- the questionnaire identifier.format
- the desired report format.- Returns:
- the answers report of the given questionnaire in the required format.
- Throws:
PortalException
Exception
- Since:
- 8.1.0
-
-