Interface DatabaseDirectoryControllerApi
@Generated(value="org.openapitools.codegen.languages.SpringCodegen",
date="2025-06-05T07:24:44.649979114Z[Etc/UTC]")
@Validated
public interface DatabaseDirectoryControllerApi
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<DatabaseDirectoryDtoGenerated>> getAll()GET /api/database-directory : getAllorg.springframework.http.ResponseEntity<DatabaseDirectoryDtoGenerated> GET /api/database-directory/{name} : getName
-
Method Details
-
getAll
@RequestMapping(method=GET, value="/api/database-directory", produces="application/json") org.springframework.http.ResponseEntity<List<DatabaseDirectoryDtoGenerated>> getAll()GET /api/database-directory : getAll- Returns:
- OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-
getName
@RequestMapping(method=GET, value="/api/database-directory/{name}", produces="application/json") org.springframework.http.ResponseEntity<DatabaseDirectoryDtoGenerated> getName(@PathVariable("name") String name) GET /api/database-directory/{name} : getName- Parameters:
name- name (required)- Returns:
- OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-