@Generated(value="org.openapitools.codegen.languages.SpringCodegen", date="2025-06-19T14:15:27.190Z[Etc/UTC]") @Validated public interface AttachmentControllerApi
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<Void> |
deleteByAttributeIdAndDatasetId(UUID attributeId,
UUID datasetId)
DELETE /attachment/attributeId/{attributeId}/dataset/{datasetId} : deleteByAttributeIdAndDatasetId
|
org.springframework.http.ResponseEntity<Void> |
deleteByParameterId(UUID parameterUuid)
DELETE /attachment/{parameterUuid} : deleteByParameterId
|
org.springframework.http.ResponseEntity<org.springframework.core.io.Resource> |
getAttachmentByAttributeIdAndDatasetId(UUID attributeId,
UUID datasetId)
GET /attachment/attributeId/{attributeId}/dataset/{datasetId} : getAttachmentByAttributeIdAndDatasetId
|
org.springframework.http.ResponseEntity<org.springframework.core.io.Resource> |
getAttachmentByParameterId(UUID parameterUuid)
GET /attachment/{parameterUuid} : getAttachmentByParameterId
|
org.springframework.http.ResponseEntity<FileDataDto> |
uploadByAttributeIdAndDatasetId(UUID attributeId,
UUID datasetId,
String type,
String fileName,
org.springframework.core.io.Resource file,
UUID dataSetListId,
Long modifiedWhen)
POST /attachment/attributeId/{attributeId}/dataset/{datasetId} : uploadByAttributeIdAndDatasetId
|
org.springframework.http.ResponseEntity<FileDataDto> |
uploadByParameterId(UUID parameterUuid,
String type,
String fileName,
org.springframework.core.io.Resource file)
POST /attachment/{parameterUuid} : uploadByParameterId
|
@RequestMapping(method=DELETE,
value="/attachment/attributeId/{attributeId}/dataset/{datasetId}")
org.springframework.http.ResponseEntity<Void> deleteByAttributeIdAndDatasetId(@PathVariable(value="attributeId")
UUID attributeId,
@PathVariable(value="datasetId")
UUID datasetId)
attributeId - attributeId (required)datasetId - datasetId (required)@RequestMapping(method=DELETE,
value="/attachment/{parameterUuid}")
org.springframework.http.ResponseEntity<Void> deleteByParameterId(@PathVariable(value="parameterUuid")
UUID parameterUuid)
parameterUuid - parameterUuid (required)@RequestMapping(method=GET,
value="/attachment/attributeId/{attributeId}/dataset/{datasetId}",
produces="application/octet-stream")
org.springframework.http.ResponseEntity<org.springframework.core.io.Resource> getAttachmentByAttributeIdAndDatasetId(@PathVariable(value="attributeId")
UUID attributeId,
@PathVariable(value="datasetId")
UUID datasetId)
attributeId - attributeId (required)datasetId - datasetId (required)@RequestMapping(method=GET,
value="/attachment/{parameterUuid}",
produces="application/octet-stream")
org.springframework.http.ResponseEntity<org.springframework.core.io.Resource> getAttachmentByParameterId(@PathVariable(value="parameterUuid")
UUID parameterUuid)
parameterUuid - parameterUuid (required)@RequestMapping(method=POST,
value="/attachment/attributeId/{attributeId}/dataset/{datasetId}",
produces="application/json")
org.springframework.http.ResponseEntity<FileDataDto> uploadByAttributeIdAndDatasetId(@PathVariable(value="attributeId")
UUID attributeId,
@PathVariable(value="datasetId")
UUID datasetId,
@NotNull @RequestParam(value="type",required=true)
String type,
@NotNull @RequestParam(value="fileName",required=true)
String fileName,
@NotNull @RequestParam(value="file",required=true)
org.springframework.core.io.Resource file,
@RequestParam(value="dataSetListId",required=false)
UUID dataSetListId,
@RequestParam(value="modifiedWhen",required=false)
Long modifiedWhen)
attributeId - attributeId (required)datasetId - datasetId (required)type - type (required)fileName - fileName (required)file - file (required)dataSetListId - dataSetListId (optional)modifiedWhen - modifiedWhen (optional)@RequestMapping(method=POST,
value="/attachment/{parameterUuid}",
produces="application/json")
org.springframework.http.ResponseEntity<FileDataDto> uploadByParameterId(@PathVariable(value="parameterUuid")
UUID parameterUuid,
@NotNull @RequestParam(value="type",required=true)
String type,
@NotNull @RequestParam(value="fileName",required=true)
String fileName,
@NotNull @RequestParam(value="file",required=true)
org.springframework.core.io.Resource file)
parameterUuid - parameterUuid (required)type - type (required)fileName - fileName (required)file - file (required)Copyright © 2025. All rights reserved.