Class EntityLinkResource

java.lang.Object
com.flowable.platform.rest.service.api.work.EntityLinkResource

@RestController
@RequestMapping("/entity-links")
public class EntityLinkResource
extends java.lang.Object
  • Constructor Summary

    Constructors 
    Constructor Description
    EntityLinkResource​(PlatformEntityLinkService platformEntityLinkService)  
  • Method Summary

    Modifier and Type Method Description
    org.springframework.http.ResponseEntity<java.util.List<EntityLinkWithDetails>> queryChildEntities​(java.lang.String scopeId, java.lang.String scopeType, boolean includeTranslations)  
    org.springframework.http.ResponseEntity<java.util.List<EntityLinkWithDetails>> queryHistoricChildEntities​(java.lang.String scopeId, java.lang.String scopeType, boolean includeTranslations)  
    org.springframework.http.ResponseEntity<ParentAndRootInfo> queryHistoricRootAndParent​(java.lang.String scopeId, java.lang.String scopeType, boolean includeTranslations)  
    org.springframework.http.ResponseEntity<ParentAndRootInfo> queryRootAndParent​(java.lang.String scopeId, java.lang.String scopeType, boolean includeTranslations)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

  • Method Details

    • queryRootAndParent

      @GetMapping("/{scopeId}/{scopeType}/root-parent") public org.springframework.http.ResponseEntity<ParentAndRootInfo> queryRootAndParent​(@PathVariable("scopeId") java.lang.String scopeId, @PathVariable("scopeType") java.lang.String scopeType, @RequestParam(required=false,defaultValue="false") boolean includeTranslations)
    • queryHistoricRootAndParent

      @GetMapping("/{scopeId}/{scopeType}/historic-root-parent") public org.springframework.http.ResponseEntity<ParentAndRootInfo> queryHistoricRootAndParent​(@PathVariable("scopeId") java.lang.String scopeId, @PathVariable("scopeType") java.lang.String scopeType, @RequestParam(required=false,defaultValue="false") boolean includeTranslations)
    • queryChildEntities

      @GetMapping("/{scopeId}/{scopeType}/children") public org.springframework.http.ResponseEntity<java.util.List<EntityLinkWithDetails>> queryChildEntities​(@PathVariable java.lang.String scopeId, @PathVariable java.lang.String scopeType, @RequestParam(required=false,defaultValue="false") boolean includeTranslations)
    • queryHistoricChildEntities

      @GetMapping("/{scopeId}/{scopeType}/historic-children") public org.springframework.http.ResponseEntity<java.util.List<EntityLinkWithDetails>> queryHistoricChildEntities​(@PathVariable java.lang.String scopeId, @PathVariable java.lang.String scopeType, @RequestParam(required=false,defaultValue="false") boolean includeTranslations)