@RequestMapping(value="/v1/process-definitions",
produces="application/hal+json")
public interface ProcessDefinitionController
| Modifier and Type | Method and Description |
|---|---|
String |
getBpmnModel(String id) |
ProcessDefinitionResource |
getProcessDefinition(String id) |
org.springframework.hateoas.PagedResources<ProcessDefinitionResource> |
getProcessDefinitions(org.springframework.data.domain.Pageable pageable,
org.springframework.data.web.PagedResourcesAssembler<ProcessDefinition> pagedResourcesAssembler) |
String |
getProcessDiagram(String id) |
String |
getProcessModel(String id) |
@RequestMapping(method=GET) org.springframework.hateoas.PagedResources<ProcessDefinitionResource> getProcessDefinitions(org.springframework.data.domain.Pageable pageable, org.springframework.data.web.PagedResourcesAssembler<ProcessDefinition> pagedResourcesAssembler)
@RequestMapping(value="/{id}",
method=GET)
ProcessDefinitionResource getProcessDefinition(@PathVariable
String id)
@RequestMapping(value="/{id}/xml",
method=GET,
produces="application/xml")
@ResponseBody
String getProcessModel(@PathVariable
String id)
@RequestMapping(value="/{id}/json",
method=GET,
produces="application/json")
@ResponseBody
String getBpmnModel(@PathVariable
String id)
Copyright © 2010–2017 Alfresco. All rights reserved.