Interface DataSetListLazyLoadingControllerApi


@Generated(value="org.openapitools.codegen.languages.SpringCodegen", date="2025-06-11T14:57:02.564217382Z[Etc/UTC]") @Validated public interface DataSetListLazyLoadingControllerApi
  • Method Summary

    Modifier and Type
    Method
    Description
    org.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)
    GET /dsl/lazy/{dataSetListId}/ReferenceByPath/{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") org.springframework.http.ResponseEntity<RefDataSetListFlatDto> getReferencedDataSetList(@PathVariable("dataSetListId") UUID dataSetListId, @PathVariable("attributePath") String attributePath)
      GET /dsl/lazy/{dataSetListId}/ReferenceByPath/{attributePath} : Returns information about the selected DSL.
      Parameters:
      dataSetListId - dataSetListId (required)
      attributePath - attributePath (required)
      Returns:
      OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)