Summary
IRestUserMemoryStore has 9 REST methods with @Operation but zero @APIResponse annotations. This is the largest single gap in OpenAPI coverage.
File
src/main/java/ai/labs/eddi/configs/properties/IRestUserMemoryStore.java
Pattern to follow
See IRestAgentStore.java for the established pattern. Common status codes:
- GET: 200, 404
- POST/PUT: 200 or 201, 400
- DELETE: 204, 404
Check the implementation (RestUserMemoryStore.java) to verify which status codes each method actually returns.
Acceptance criteria
Summary
IRestUserMemoryStorehas 9 REST methods with@Operationbut zero@APIResponseannotations. This is the largest single gap in OpenAPI coverage.File
src/main/java/ai/labs/eddi/configs/properties/IRestUserMemoryStore.javaPattern to follow
See
IRestAgentStore.javafor the established pattern. Common status codes:Check the implementation (
RestUserMemoryStore.java) to verify which status codes each method actually returns.Acceptance criteria
@APIResponseannotations./mvnw compilepasses