You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A unit test exists for inserting the @PathParam annotation on to method parameters but does not verify all the code actions for all the diagnostics produced by the test resource. See io.openliberty.sample.jakarta.websocket.AnnotationTest and org.eclipse.lsp4jakarta.jdt.websocket.JakartaWebSocketTest.addPathParamsAnnotation(). The test should also verify the quick fixes for the public void OnClose(Session session, Integer missingAnnotation1, String missingAnnotation2) method.
There are unit tests for some quick fixes but there are none for the following diagnostics.
Bean Validation
@DecimalMax
/@DecimalMin
/@Digits
annotation can only be used on: BigDecimal... etc.@Email
annotation can only be used on String...@Min
/@Max
annotation can only be used on BigDecimal, ... etc@Negative
/@NegativeOrZero
/@Positive
/@PositiveOrZero
annotation can only be used on BigDecimal, ... etc@NotBlank
/@Pattern
annotation can only be used on String and CharSequence type fields or methods.The text was updated successfully, but these errors were encountered: