supportMutiny();
/**
* Handles the return type for each operation, depending on the configuration.
@@ -99,35 +90,35 @@ public class CommonItemConfig {
*
* 1. If {@code mutiny} is enabled and the operation ID is specified to return {@code Multi}:
* - The return type will be wrapped in {@link io.smallrye.mutiny.Multi}.
- * - If {@code mutiny.return-response} is enabled, the return type will be
+ * - If {@code return-response} is enabled, the return type will be
* {@link io.smallrye.mutiny.Multi}.
* - If the operation has a void return type, it will return {@link io.smallrye.mutiny.Multi}.
* - Otherwise, it will return {@link io.smallrye.mutiny.Multi}.
*
* 2. If {@code mutiny} is enabled and the operation ID is specified to return {@code Uni}:
* - The return type will be wrapped in {@link io.smallrye.mutiny.Uni}.
- * - If {@code mutiny.return-response} is enabled, the return type will be
+ * - If {@code return-response} is enabled, the return type will be
* {@link io.smallrye.mutiny.Uni}.
* - If the operation has a void return type, it will return {@link io.smallrye.mutiny.Uni}.
* - Otherwise, it will return {@link io.smallrye.mutiny.Uni}.
*
* 3. If {@code mutiny} is enabled but no specific operation ID is configured for {@code Multi} or {@code Uni}:
* - The return type defaults to {@code Uni}.
- * - If {@code mutiny.return-response} is enabled, the return type will be
+ * - If {@code return-response} is enabled, the return type will be
* {@link io.smallrye.mutiny.Uni}.
* - If the operation has a void return type, it will return {@link io.smallrye.mutiny.Uni}.
* - Otherwise, it will return {@link io.smallrye.mutiny.Uni}`.
*/
- @ConfigItem(name = "mutiny.operation-ids")
- public Optional