Martin Kouba

Results 38 issues of Martin Kouba

#### Describe the feature It might be useful to introduce a standardized exception for integrity constraint violations, e.g. something like `java.sql.SQLIntegrityConstraintViolationException`, so that higher layers can detect such a violation...

enhancement

By means of @Priority annotation. See also: http://docs.jboss.org/cdi/spec/1.1/cdi-spec.html#declaring_selected_alternatives

I've found 22 usages of `Set` directly in jandex classes `org.jboss.jandex.Index` and `org.jboss.jandex.CompositeIndex`. Given the fact that `ClassInfo` does not implement equals/hashCode it would make sense to refactor these classes,...

`Context` is very ambiguous. We may consider renaming the annotation while moving to the spec.

This may happen if class hierarchies are in use: ```java @ApplicationScoped class Foo { @Incoming("source") @Outgoing("processed-a") public String toUpperCase(String payload) { return payload.toUpperCase(); } } @ApplicationScoped class Bar extends Foo...

enhancement
core

##### Issue Overview An injected `@ArquillianResource URL` ends with a slash for servlet containers but does not end with a slash for non-servlet containers. See also `org.jboss.arquillian.container.spi.client.protocol.metadata.Servlet.getBaseURIAsString()` and `org.jboss.arquillian.container.test.impl.enricher.resource.URLResourceProvider.toURL(HTTPContext)` -...

I'm not quite sure whether this should be supported or not. Suppose that we have a parameterized type: `Foo`. Now I'd like to use `Foo` as a config property (using...

enhancement

- only if Instance#get(), InjectableInstance#getHandle() and ArcContainer.instance() is called - added InjectableInstance.orElse() and InjectableInstance.orNull() - resolves #18345

area/arc
area/undertow
area/resteasy-reactive

### Description Namely this part: https://github.com/quarkusio/quarkus/blob/2.13/independent-projects/arc/runtime/src/main/java/io/quarkus/arc/impl/ArcContainerImpl.java#L266-L276 ### Implementation ideas _No response_

area/arc
area/housekeeping

### Description This is needed if implicit converters are used in the native image. https://github.com/quarkusio/quarkus/pull/27963 adds support for `Optional`. We should also add support for `List`, `Set` and maybe others....

kind/enhancement
area/config