Interface DataSetListLazyLoadingControllerApi
@Generated(value="org.openapitools.codegen.languages.SpringCodegen",
date="2025-09-30T20:29:53.696203184Z[Etc/UTC]")
@Validated
public interface DataSetListLazyLoadingControllerApi
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<DataSetListFlatDto> getDataSetListFlat(UUID dataSetListId) GET /dsl/lazy/{dataSetListId} : Returns information about the selected DSL.org.springframework.http.ResponseEntity<RefDataSetListFlatDto> getReferencedDataSetList(UUID dataSetListId, String attributePath, @Valid Integer page, @Valid Integer size, @Valid List<UUID> UUID) GET /dsl/lazy/{dataSetListId}/ReferenceByPath/{attributePath} : Returns information about the selected DSL.org.springframework.http.ResponseEntity<RefDataSetListFlatDto> getReferencedDataSetListRows(UUID dataSetListId, String attributePath, @Valid Integer page, @Valid Integer size, @Valid List<UUID> UUID) GET /dsl/lazy/{dataSetListId}/ReferenceByPath/rows/{attributePath} : Returns information about the selected DSL.
-
Method Details
-
getDataSetListFlat
@RequestMapping(method=GET, value="/dsl/lazy/{dataSetListId}", produces="application/json") org.springframework.http.ResponseEntity<DataSetListFlatDto> getDataSetListFlat(@PathVariable("dataSetListId") UUID dataSetListId) GET /dsl/lazy/{dataSetListId} : Returns information about the selected DSL.- Parameters:
dataSetListId- dataSetListId (required)- Returns:
- OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-
getReferencedDataSetList
@RequestMapping(method=GET, value="/dsl/lazy/{dataSetListId}/ReferenceByPath/{attributePath}", produces="application/json", consumes="application/json") org.springframework.http.ResponseEntity<RefDataSetListFlatDto> getReferencedDataSetList(@PathVariable("dataSetListId") UUID dataSetListId, @PathVariable("attributePath") String attributePath, @Valid @RequestParam(value="page",required=false) @Valid Integer page, @Valid @RequestParam(value="size",required=false) @Valid Integer size, @Valid @RequestBody(required=false) @Valid List<UUID> UUID) GET /dsl/lazy/{dataSetListId}/ReferenceByPath/{attributePath} : Returns information about the selected DSL.- Parameters:
dataSetListId- dataSetListId (required)attributePath- attributePath (required)page- (optional)size- (optional)UUID- (optional)- Returns:
- OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-
getReferencedDataSetListRows
@RequestMapping(method=GET, value="/dsl/lazy/{dataSetListId}/ReferenceByPath/rows/{attributePath}", produces="application/json", consumes="application/json") org.springframework.http.ResponseEntity<RefDataSetListFlatDto> getReferencedDataSetListRows(@PathVariable("dataSetListId") UUID dataSetListId, @PathVariable("attributePath") String attributePath, @Valid @RequestParam(value="page",required=false) @Valid Integer page, @Valid @RequestParam(value="size",required=false) @Valid Integer size, @Valid @RequestBody(required=false) @Valid List<UUID> UUID) GET /dsl/lazy/{dataSetListId}/ReferenceByPath/rows/{attributePath} : Returns information about the selected DSL.- Parameters:
dataSetListId- dataSetListId (required)attributePath- attributePath (required)page- (optional)size- (optional)UUID- (optional)- Returns:
- OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-