Interface HvlBpmnProcessInstanceRestService

All Known Implementing Classes:
HvlBpmnProcessInstanceRestController

@Validated @HvlPublicFeignRestService @FeignClient(name="bpmnProcessInstancePublicRestService", path="${hvl.bpmn.service.process.instance.path:/process/instance}", url="${hvl.bpmn.service.process.instance.url:${hvl.bpmn.service.url}}") public interface HvlBpmnProcessInstanceRestService
A restful service which provides specific methods for bpmn admin process instance.
  • Method Details

    • queryList

      @PostMapping(path="/list", consumes="application/json", produces="application/json") tr.com.havelsan.javarch.service.data.HvlResponse<List<HvlBpmnAdminProcessInstanceModel>> queryList(@NotNull @Valid @RequestBody @NotNull @Valid HvlBpmnAdminProcessInstanceQueryModel processInstanceQueryModel)
      Returns a list of process instance matching the query criteria.
      Parameters:
      processInstanceQueryModel - the process instance query model
      Returns:
      the hvl response
    • queryPage

      @PostMapping(path="/page", consumes="application/json", produces="application/json") tr.com.havelsan.javarch.service.data.HvlResponse<tr.com.havelsan.javarch.data.commons.pageable.HvlPage<HvlBpmnAdminProcessInstanceModel>> queryPage(@NotNull @Valid @RequestBody @NotNull @Valid HvlBpmnAdminProcessInstanceQueryModel processInstanceQueryModel)
      Returns a page of process instance matching the query criteria.
      Parameters:
      processInstanceQueryModel - the process instance query model
      Returns:
      the hvl response
    • queryTaskPage

      @PostMapping(path="/task/page", consumes="application/json", produces="application/json") tr.com.havelsan.javarch.service.data.HvlResponse<tr.com.havelsan.javarch.data.commons.pageable.HvlPage<HvlBpmnTaskModel>> queryTaskPage(@NotNull @Valid @RequestBody @NotNull @Valid HvlBpmnTaskQueryModel taskQueryModel)
      Returns a page of task by process instance matching the query criteria.
      Parameters:
      taskQueryModel - the task query model
      Returns:
      the hvl response
    • queryInstanceLogs

      @PostMapping(path="/logs/page", produces="application/json") tr.com.havelsan.javarch.service.data.HvlResponse<tr.com.havelsan.javarch.data.commons.pageable.HvlPage<HvlBpmnProcessInstanceLogModel>> queryInstanceLogs(@NotNull @Valid @RequestBody @NotNull @Valid HvlBpmnEventLogQueryModel bpmnEventLogQueryModel)
      Returns a page of process instance logs matching the query criteria.
      Parameters:
      bpmnEventLogQueryModel - the bpmn event log query model
      Returns:
      the hvl response