Is there a place where I can see what specific REST calls I can make using the REST component added to my Spring Boot Activiti Service?
I added the dependency
<dependency>
<groupId>org.activiti</groupId>
<artifactId>activiti-common-rest</artifactId>
<version>5.21.0</version>
</dependency>
Also added the Spring Boot Actuator component. It provides this:
{[/activiti/processes/{processDefinitionKey:.*}],methods=[GET],produces=[image/jpeg]}: {
bean: "endpointHandlerMapping",
method: "public org.springframework.http.ResponseEntity org.activiti.spring.boot.actuate.endpoint.ProcessEngineMvcEndpoint.processDefinitionDiagram(java.lang.String)"
},
{[/activiti || /activiti.json],methods=[GET],produces=[application/json]}: {
bean: "endpointHandlerMapping",
method: "public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()"
}
Can someone give more detail?