Class HistoricDetailDataResource
- java.lang.Object
-
- org.flowable.rest.service.api.history.HistoricDetailBaseResource
-
- org.flowable.rest.service.api.history.HistoricDetailDataResource
-
@RestController public class HistoricDetailDataResource extends HistoricDetailBaseResource
- Author:
- Tijs Rademakers
-
-
Field Summary
Fields Modifier and Type Field Description protected HistoryServicehistoryServiceprotected RestResponseFactoryrestResponseFactory-
Fields inherited from class org.flowable.rest.service.api.history.HistoricDetailBaseResource
restApiInterceptor
-
-
Constructor Summary
Constructors Constructor Description HistoricDetailDataResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getVariableData(String detailId, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)RestVariablegetVariableFromRequest(boolean includeBinary, String detailId, javax.servlet.http.HttpServletRequest request)-
Methods inherited from class org.flowable.rest.service.api.history.HistoricDetailBaseResource
getQueryResponse
-
-
-
-
Field Detail
-
restResponseFactory
@Autowired protected RestResponseFactory restResponseFactory
-
historyService
@Autowired protected HistoryService historyService
-
-
Method Detail
-
getVariableData
@GetMapping("/history/historic-detail/{detailId}/data") @ResponseBody public byte[] getVariableData(@PathVariable("detailId") String detailId, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
-
getVariableFromRequest
public RestVariable getVariableFromRequest(boolean includeBinary, String detailId, javax.servlet.http.HttpServletRequest request)
-
-