Package org.alfresco.model.handler
Interface AspectsApi
- All Known Subinterfaces:
AspectsApiClient
public interface AspectsApi
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<AspectEntry>org.springframework.http.ResponseEntity<AspectPaging>listAspects(@Valid String where, @Min(0L) @Valid Integer skipCount, @Min(1L) @Valid Integer maxItems, @Valid List<String> include)
-
Method Details
-
getAspect
@RequestMapping(value="/aspects/{aspectId}", produces="application/json", consumes="", method=GET) org.springframework.http.ResponseEntity<AspectEntry> getAspect(@PathVariable("aspectId") String aspectId) -
listAspects
@RequestMapping(value="/aspects", produces="application/json", consumes="", method=GET) org.springframework.http.ResponseEntity<AspectPaging> listAspects(@Valid @RequestParam(value="where",required=false) @Valid String where, @Min(0L) @Valid @RequestParam(value="skipCount",required=false,defaultValue="0") @Min(0L) @Valid Integer skipCount, @Min(1L) @Valid @RequestParam(value="maxItems",required=false,defaultValue="100") @Min(1L) @Valid Integer maxItems, @Valid @RequestParam(value="include",required=false) @Valid List<String> include)
-