We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The @javax.validation.constraints.Size annotation on the following code:
@javax.validation.constraints.Size
@io.swagger.v3.oas.annotations.media.Schema(name = "band1Email") @com.fasterxml.jackson.annotation.JsonProperty(value = "band1Email") @javax.validation.constraints.Size(min = 1, max = 16777215, payload = javax.validation.valueextraction.Unwrapping.Unwrap.class, groups = { web.api.validation.Request.class, web.api.validation.Response.class }) public java.util.Optional<java.lang.String> getBand1Email() { return this.band1Email; }
causes the following warning:
The constraint is marked for unwrapping but the annotation processor was not able to determine the unwrapped type. No further checks are performed.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
@javax.validation.constraints.Size
annotation on the following code:causes the following warning:
The constraint is marked for unwrapping but the annotation processor was not able to determine the unwrapped type. No further checks are performed.
The text was updated successfully, but these errors were encountered: