jaxb2-commons
jaxb2-commons copied to clipboard
JAXB Implementation project has been contributed to Eclipse Foundation. This repository is for legacy review only. Please refer to the Eclipse EE4J Metro project for the very latest
Maybe someone is still watching this... I'm interested in moving the following plugins into the new Jakarta EE 9 era... - jaxb2-commons-lang - jaxb2-default-value - jaxb2-fluent-api - jaxb2-namespace-prefix - jaxb2-value-constructor...
Would a PR be accepted that extended DefaultValuePlugin.java to emit code like `java.time.Duration#parse(String)` to read a default value for that type?
When I compile an xsd with -Xvalue-constructor I am getting: error: too many parameters Here is the xsd file I am compiling: https://github.com/Intacct/intacct_dtd/blob/master/v3.0/api.xsd Function.java:1160: error: too many parameters and below...
I am able to use the value-constructor plugin to create constructors from xsd. But generated classes that have a refernce to a java class that is an enum type, do...
I am trying to create value constructors using xjc inside jaxb2-maven-plugin. Cant get it to create the constructors. Here is what I tried: org.codehaus.mojo jaxb2-maven-plugin 2.2 generate-schema-data generate-sources xjc true...
As in title: I'd like to have possibility to use commons-lang plugin with custom `ToStringStyle`. Problem is that my custom implementation isn't available yet while generating sources - it's to...
There's no documentation here. It's not clear to me how I'd use this code. If there's documentation elsewhere it would be good to put a link to it from a...
Use case is the following : - An XSD type, let's call it Type1, is defined. - Another type, Type2, is defined as en extension of Type1. - Type1 is...
The JavaDoc of the value constructor that is generated by the org.jvnet.jaxb2_commons:jaxb2-value-constructor:3.0 does not contain any @param declarations and therefore does not pass the doclint check that was introduced in...
XJC generated code looks fine: {code;java} public Property(final String value, final String name, final String locale) { this.value = value; this.name = name; this.locale = locale; }``` but the {{ObjectFactory}}...