@Generated(value="org.openapitools.codegen.languages.SpringCodegen", date="2025-06-19T14:15:27.769Z[Etc/UTC]") @Validated public interface AttributeControllerApi
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<Void> |
bulkDeleteListValues(UUID attributeId,
UUID listValues,
UUID dataSetListId,
Long modifiedWhen)
DELETE /attribute/{attributeId}/bulk : Bulk delete list values by id.
|
org.springframework.http.ResponseEntity<AttributeCreateResponseDto> |
create(UUID dataSetListId,
String name,
Integer ordering,
AttributeTypeDto type,
UUID typeDataSetListId,
Long modifiedWhen,
List<String> requestBody)
PUT /attribute/dsl/{dataSetListId} : Creates new attribute with provided name and order.
|
org.springframework.http.ResponseEntity<ListValueDto> |
createListValue(UUID attributeId,
String value,
UUID dataSetListId,
Long modifiedWhen)
PUT /attribute/{attributeId}/listValues : Creates new list value for provided attribute.
|
org.springframework.http.ResponseEntity<List<UUID>> |
createListValues(UUID attributeId,
UUID dataSetListId,
Long modifiedWhen,
List<String> requestBody)
POST /attribute/{attributeId}/listValues : Creates new list values for provided attribute by text.
|
org.springframework.http.ResponseEntity<Boolean> |
delete(UUID attributeId,
UUID dataSetListId,
Long modifiedWhen)
DELETE /attribute/{attributeId} : Deletes selected attribute.
|
org.springframework.http.ResponseEntity<Void> |
deleteAllByDsl(UUID dataSetListId,
Long modifiedWhen)
DELETE /attribute/dsl/{dataSetListId}/all : Deletes attributes from the selected dataSetsList.
|
org.springframework.http.ResponseEntity<Void> |
deleteListValue(UUID attributeId,
UUID listValueId,
UUID dataSetListId,
Long modifiedWhen)
DELETE /attribute/{attributeId}/listValues/{listValueId} : Delete list value by id.
|
org.springframework.http.ResponseEntity<AttributeDto> |
get(UUID attributeId)
GET /attribute/{attributeId} : Returns attribute.
|
org.springframework.http.ResponseEntity<List<AttributeDto>> |
getAttributes(UUID dataSetListId)
GET /attribute/dsl/{dataSetListId} : Returns all attributes by dataSetList id.
|
org.springframework.http.ResponseEntity<Object> |
getAttributesInItfFormat(UUID dataSetListId)
GET /attribute/dsl/{dataSetListId}/itf : Returns all attributes by dataSetList id in itf format: [attr1.attr2, attr1].
|
org.springframework.http.ResponseEntity<Object> |
getOptions(UUID attributeId)
GET /attribute/{attributeId}/options : getOptions
|
org.springframework.http.ResponseEntity<List<List>> |
getParametersValuesAndDataSetIdsForAttributeValuesSorting(UUID dataSetListId,
UUID targetAttrId,
Map<String,Set<UUID>> requestBody)
POST /attribute/{dataSetListId}/existedValues : Sort Attribute values.
|
org.springframework.http.ResponseEntity<Boolean> |
rename(UUID attributeId,
String name,
UUID dataSetListId,
Long modifiedWhen)
POST /attribute/{attributeId} : Renames selected attribute.
|
org.springframework.http.ResponseEntity<Void> |
setPosition(UUID attributeId,
Integer body)
POST /attribute/{attributeId}/position : Creates new list values for provided attribute by text.
|
org.springframework.http.ResponseEntity<Boolean> |
updateDslReference(UUID attributeId,
UUID value)
POST /attribute/{attributeId}/dataSetListReference : Update DSL reference.
|
org.springframework.http.ResponseEntity<Void> |
updateOrdering(List<PairOfUUidAndIntDto> pairOfUUidAndIntDto)
PUT /attribute/updateOrdering : updateOrdering
|
@RequestMapping(method=DELETE,
value="/attribute/{attributeId}/bulk")
org.springframework.http.ResponseEntity<Void> bulkDeleteListValues(@PathVariable(value="attributeId")
UUID attributeId,
@NotNull @RequestParam(value="listValues",required=true)
UUID listValues,
@RequestParam(value="dataSetListId",required=false)
UUID dataSetListId,
@RequestParam(value="modifiedWhen",required=false)
Long modifiedWhen)
attributeId - attributeId (required)listValues - listValues (required)dataSetListId - dataSetListId (optional)modifiedWhen - modifiedWhen (optional)@RequestMapping(method=PUT,
value="/attribute/dsl/{dataSetListId}",
produces="application/json",
consumes="application/json")
org.springframework.http.ResponseEntity<AttributeCreateResponseDto> create(@PathVariable(value="dataSetListId")
UUID dataSetListId,
@NotNull @RequestParam(value="name",required=true)
String name,
@NotNull @RequestParam(value="ordering",required=true)
Integer ordering,
@NotNull @RequestParam(value="type",required=true)
AttributeTypeDto type,
@RequestParam(value="typeDataSetListId",required=false)
UUID typeDataSetListId,
@RequestParam(value="modifiedWhen",required=false)
Long modifiedWhen,
@RequestBody(required=false)
List<String> requestBody)
dataSetListId - dataSetListId (required)name - name (required)ordering - ordering (required)type - type (required)typeDataSetListId - typeDataSetListId (optional)modifiedWhen - modifiedWhen (optional)requestBody - (optional)@RequestMapping(method=PUT,
value="/attribute/{attributeId}/listValues",
produces="application/json")
org.springframework.http.ResponseEntity<ListValueDto> createListValue(@PathVariable(value="attributeId")
UUID attributeId,
@NotNull @RequestParam(value="value",required=true)
String value,
@RequestParam(value="dataSetListId",required=false)
UUID dataSetListId,
@RequestParam(value="modifiedWhen",required=false)
Long modifiedWhen)
attributeId - attributeId (required)value - value (required)dataSetListId - dataSetListId (optional)modifiedWhen - modifiedWhen (optional)@RequestMapping(method=POST,
value="/attribute/{attributeId}/listValues",
produces="application/json",
consumes="application/json")
org.springframework.http.ResponseEntity<List<UUID>> createListValues(@PathVariable(value="attributeId")
UUID attributeId,
@RequestParam(value="dataSetListId",required=false)
UUID dataSetListId,
@RequestParam(value="modifiedWhen",required=false)
Long modifiedWhen,
@RequestBody(required=false)
List<String> requestBody)
attributeId - attributeId (required)dataSetListId - dataSetListId (optional)modifiedWhen - modifiedWhen (optional)requestBody - (optional)@RequestMapping(method=DELETE,
value="/attribute/{attributeId}",
produces="application/json")
org.springframework.http.ResponseEntity<Boolean> delete(@PathVariable(value="attributeId")
UUID attributeId,
@RequestParam(value="dataSetListId",required=false)
UUID dataSetListId,
@RequestParam(value="modifiedWhen",required=false)
Long modifiedWhen)
attributeId - attributeId (required)dataSetListId - dataSetListId (optional)modifiedWhen - modifiedWhen (optional)@RequestMapping(method=DELETE,
value="/attribute/dsl/{dataSetListId}/all")
org.springframework.http.ResponseEntity<Void> deleteAllByDsl(@PathVariable(value="dataSetListId")
UUID dataSetListId,
@RequestParam(value="modifiedWhen",required=false)
Long modifiedWhen)
dataSetListId - dataSetListId (required)modifiedWhen - modifiedWhen (optional)@RequestMapping(method=DELETE,
value="/attribute/{attributeId}/listValues/{listValueId}")
org.springframework.http.ResponseEntity<Void> deleteListValue(@PathVariable(value="attributeId")
UUID attributeId,
@PathVariable(value="listValueId")
UUID listValueId,
@RequestParam(value="dataSetListId",required=false)
UUID dataSetListId,
@RequestParam(value="modifiedWhen",required=false)
Long modifiedWhen)
attributeId - attributeId (required)listValueId - listValueId (required)dataSetListId - dataSetListId (optional)modifiedWhen - modifiedWhen (optional)@RequestMapping(method=GET,
value="/attribute/{attributeId}",
produces="application/json")
org.springframework.http.ResponseEntity<AttributeDto> get(@PathVariable(value="attributeId")
UUID attributeId)
attributeId - attributeId (required)@RequestMapping(method=GET,
value="/attribute/dsl/{dataSetListId}",
produces="application/json")
org.springframework.http.ResponseEntity<List<AttributeDto>> getAttributes(@PathVariable(value="dataSetListId")
UUID dataSetListId)
dataSetListId - dataSetListId (required)@RequestMapping(method=GET,
value="/attribute/dsl/{dataSetListId}/itf",
produces="application/json")
org.springframework.http.ResponseEntity<Object> getAttributesInItfFormat(@PathVariable(value="dataSetListId")
UUID dataSetListId)
dataSetListId - dataSetListId (required)@RequestMapping(method=GET,
value="/attribute/{attributeId}/options",
produces="application/json")
org.springframework.http.ResponseEntity<Object> getOptions(@PathVariable(value="attributeId")
UUID attributeId)
attributeId - attributeId (required)@RequestMapping(method=POST,
value="/attribute/{dataSetListId}/existedValues",
produces="application/json",
consumes="application/json")
org.springframework.http.ResponseEntity<List<List>> getParametersValuesAndDataSetIdsForAttributeValuesSorting(@PathVariable(value="dataSetListId")
UUID dataSetListId,
@NotNull @RequestParam(value="targetAttrId",required=true)
UUID targetAttrId,
@RequestBody(required=false)
Map<String,Set<UUID>> requestBody)
dataSetListId - dataSetListId (required)targetAttrId - targetAttrId (required)requestBody - (optional)@RequestMapping(method=POST,
value="/attribute/{attributeId}",
produces="application/json")
org.springframework.http.ResponseEntity<Boolean> rename(@PathVariable(value="attributeId")
UUID attributeId,
@NotNull @RequestParam(value="name",required=true)
String name,
@RequestParam(value="dataSetListId",required=false)
UUID dataSetListId,
@RequestParam(value="modifiedWhen",required=false)
Long modifiedWhen)
attributeId - attributeId (required)name - name (required)dataSetListId - dataSetListId (optional)modifiedWhen - modifiedWhen (optional)@RequestMapping(method=POST,
value="/attribute/{attributeId}/position",
consumes="application/json")
org.springframework.http.ResponseEntity<Void> setPosition(@PathVariable(value="attributeId")
UUID attributeId,
@RequestBody(required=false)
Integer body)
attributeId - attributeId (required)body - (optional)@RequestMapping(method=POST,
value="/attribute/{attributeId}/dataSetListReference",
produces="application/json")
org.springframework.http.ResponseEntity<Boolean> updateDslReference(@PathVariable(value="attributeId")
UUID attributeId,
@RequestParam(value="value",required=false)
UUID value)
attributeId - attributeId (required)value - value (optional)@RequestMapping(method=PUT,
value="/attribute/updateOrdering",
consumes="application/json")
org.springframework.http.ResponseEntity<Void> updateOrdering(@RequestBody(required=false)
List<PairOfUUidAndIntDto> pairOfUUidAndIntDto)
pairOfUUidAndIntDto - (optional)Copyright © 2025. All rights reserved.