[rest] PersistenceResource: Update OpenAPI annotation itemname => itemName (#5400)

Signed-off-by: Florian Hotze <dev@florianhotze.com>
This commit is contained in:
Florian Hotze
2026-03-15 20:01:47 +01:00
committed by GitHub
parent 105b5244b8
commit 1341eda39e
@@ -278,7 +278,7 @@ public class PersistenceResource implements RESTResource {
@ApiResponse(responseCode = "405", description = "Persistence service not queryable or getting Item info not allowed") })
public Response httpGetPersistenceServiceItems(@Context HttpHeaders headers,
@Parameter(description = "Id of the persistence service. If not provided the default service will be used") @QueryParam("serviceId") @Nullable String serviceId,
@Parameter(description = "An Item name, if provided response will only contain information for this Item") @QueryParam("itemname") @Nullable String itemName) {
@Parameter(description = "An Item name, if provided response will only contain information for this Item") @QueryParam("itemName") @Nullable String itemName) {
return getServiceItemListDTO(serviceId, itemName);
}