@Generated(value="org.openapitools.codegen.languages.SpringCodegen", date="2025-08-08T09:59:24.634Z[Etc/UTC]") @Validated public interface ConnectionControllerApi
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<ConnectionDto> |
createConnection(@Valid ConnectionDtoDto connectionDtoDto)
POST /api/connections : create
|
org.springframework.http.ResponseEntity<Void> |
deleteConnection(UUID connectionId)
DELETE /api/connections/{connectionId} : delete
|
org.springframework.http.ResponseEntity<ConnectionDto> |
getConnection(UUID connectionId,
@Valid Boolean full)
GET /api/connections/{connectionId} : getConnection
|
org.springframework.http.ResponseEntity<List<ConnectionDto>> |
getConnectionsAll(@Valid Boolean full)
GET /api/connections : getConnectionsAll
|
org.springframework.http.ResponseEntity<List<ConnectionDto>> |
getConnectionsAllBy(@Valid Boolean full,
@Valid ConnectionByCategoryDtoDto connectionByCategoryDtoDto)
POST /api/connections/getAllBy : getConnectionsAllBy
|
org.springframework.http.ResponseEntity<List<ConnectionDto>> |
getConnectionTemplates(@Valid Boolean full)
GET /api/connections/templates : getConnectionTemplates
|
org.springframework.http.ResponseEntity<List<ConnectionNameViewDto>> |
getConnectionTemplatesShort()
GET /api/connections/templates/short : Getting connection templates in abbreviated form :{id:\"\",name:\"\"}
|
org.springframework.http.ResponseEntity<ConnectionDto> |
updateConnection(@Valid ConnectionDtoDto connectionDtoDto)
PUT /api/connections : update
|
org.springframework.http.ResponseEntity<List<ConnectionDto>> |
updateParameters(@Valid List<ConnectionDtoDto> connectionDtoDto)
PUT /api/connections/parameters : updateParameters
|
@RequestMapping(method=POST,
value="/api/connections",
produces="application/json",
consumes="application/json")
org.springframework.http.ResponseEntity<ConnectionDto> createConnection(@Valid @RequestBody(required=false)
@Valid ConnectionDtoDto connectionDtoDto)
connectionDtoDto - (optional)@RequestMapping(method=DELETE,
value="/api/connections/{connectionId}")
org.springframework.http.ResponseEntity<Void> deleteConnection(@PathVariable(value="connectionId")
UUID connectionId)
connectionId - connectionId (required)@RequestMapping(method=GET,
value="/api/connections/{connectionId}",
produces="application/json")
org.springframework.http.ResponseEntity<ConnectionDto> getConnection(@PathVariable(value="connectionId")
UUID connectionId,
@Valid @RequestParam(value="full",required=false)
@Valid Boolean full)
connectionId - connectionId (required)full - full (optional)@RequestMapping(method=GET,
value="/api/connections/templates",
produces="application/json")
org.springframework.http.ResponseEntity<List<ConnectionDto>> getConnectionTemplates(@Valid @RequestParam(value="full",required=false)
@Valid Boolean full)
full - full (optional)@RequestMapping(method=GET,
value="/api/connections/templates/short",
produces="application/json")
org.springframework.http.ResponseEntity<List<ConnectionNameViewDto>> getConnectionTemplatesShort()
@RequestMapping(method=GET,
value="/api/connections",
produces="application/json")
org.springframework.http.ResponseEntity<List<ConnectionDto>> getConnectionsAll(@Valid @RequestParam(value="full",required=false)
@Valid Boolean full)
full - full (optional)@RequestMapping(method=POST,
value="/api/connections/getAllBy",
produces="application/json",
consumes="application/json")
org.springframework.http.ResponseEntity<List<ConnectionDto>> getConnectionsAllBy(@Valid @RequestParam(value="full",required=false)
@Valid Boolean full,
@Valid @RequestBody(required=false)
@Valid ConnectionByCategoryDtoDto connectionByCategoryDtoDto)
full - full (optional)connectionByCategoryDtoDto - (optional)@RequestMapping(method=PUT,
value="/api/connections",
produces="application/json",
consumes="application/json")
org.springframework.http.ResponseEntity<ConnectionDto> updateConnection(@Valid @RequestBody(required=false)
@Valid ConnectionDtoDto connectionDtoDto)
connectionDtoDto - (optional)@RequestMapping(method=PUT,
value="/api/connections/parameters",
produces="application/json",
consumes="application/json")
org.springframework.http.ResponseEntity<List<ConnectionDto>> updateParameters(@Valid @RequestBody(required=false)
@Valid List<ConnectionDtoDto> connectionDtoDto)
connectionDtoDto - (optional)Copyright © 2025. All rights reserved.