Class SignalResource
- java.lang.Object
-
- org.flowable.rest.service.api.runtime.SignalResource
-
@RestController public class SignalResource extends Object
Resource for notifying the engine a signal event has been received, independent of an execution.- Author:
- Frederik Heremans
-
-
Field Summary
Fields Modifier and Type Field Description protected BpmnRestApiInterceptorrestApiInterceptorprotected RestResponseFactoryrestResponseFactoryprotected RuntimeServiceruntimeService
-
Constructor Summary
Constructors Constructor Description SignalResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidsignalEventReceived(SignalEventReceivedRequest signalRequest, javax.servlet.http.HttpServletResponse response)
-
-
-
Field Detail
-
restResponseFactory
@Autowired protected RestResponseFactory restResponseFactory
-
runtimeService
@Autowired protected RuntimeService runtimeService
-
restApiInterceptor
@Autowired(required=false) protected BpmnRestApiInterceptor restApiInterceptor
-
-
Method Detail
-
signalEventReceived
@PostMapping("/runtime/signals") public void signalEventReceived(@RequestBody SignalEventReceivedRequest signalRequest, javax.servlet.http.HttpServletResponse response)
-
-