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
When the name defined in the XmlElement annotation does not match the method name, the generated openapi is wrong
it then returns
Issue can be reproduced with https://github.com/troosan/quarkus-jaxb-openapi-reproducer
The text was updated successfully, but these errors were encountered:
here is a sample class
package test.io.smallrye.openapi.runtime.scanner.dataobject.javax; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; @XmlAccessorType(value = XmlAccessType.NONE) @XmlType(name = "TypeName", propOrder = { "field1", "field2" }) public class XmlAccessTypeMembersWithNoneAccessorType { @XmlElement(name = "field2") public String prop1Field; public String prop2Field; @XmlElement(name = "field1") public String getProp3Property() { return null; } }
The test should verify that
TypeName
Sorry, something went wrong.
No branches or pull requests
When the name defined in the XmlElement annotation does not match the method name, the generated openapi is wrong
it then returns
Issue can be reproduced with https://github.com/troosan/quarkus-jaxb-openapi-reproducer
The text was updated successfully, but these errors were encountered: