Tagged Questions
1
vote
0answers
24 views
JAXB XJC how to generate an enumeration with method and implementing interfaces with binding file
I have a problem with JAXB XJC and binding.
I don't know how to generate an enumeration by xsd implementing and interface and a set of method.
For example I would generate something like that
public ...
1
vote
0answers
49 views
JAXB javaType customization on xs:integer produces @XmlElement with “type=String.class”
When generating Java beans from a XSD with XJC, I need to map xs:integer to Integer rather than BigInteger. I added a javaType tag to my JAXB customization file (as said in many answers from this ...
0
votes
1answer
375 views
xjc / jaxb2-commons interface binding issue, customization attached to the wrong place
I'm trying to add an interface using the jaxb2-basics artifact from the jaxb2_commons maven group.
My pom.xml contains the following dependencies
<dependency>
...
1
vote
0answers
159 views
Generating JAXB classes with multiple prefixes using an external binding
I have a group of XSD files, as follows:
http://www.iana.org/assignments/xml-registry/schema/contact-1.0.xsd
http://www.iana.org/assignments/xml-registry/schema/domain-1.0.xsd
...
1
vote
1answer
52 views
Is it possible to create a single class mapping for identical xs:simpleContent elements?
I have an externally supplied XSD which has many elements all which are identical and represent a price with optional currency attribute.
<xs:complexType name="someType">
<xs:sequence>
...
1
vote
1answer
154 views
XJC xs:choice inheritance
I am having a problem getting xjc to generate a class with choice group extension that maintains order. The following schema is an example.
<xs:complexType name="base">
<xs:choice ...
-1
votes
1answer
213 views
xjc does not add @XmlElement(nillable=false) on generated fields
I have a problem with generating classes using xjc. In the schema I have nillable="false", yet this is not added as an annotation (@XmlElement(nillable=false)) on the generated fields. This causes ...
0
votes
1answer
89 views
Getting access to the model, the xjc compiler uses to generate java code from schema, without writing my own plugin
Just a little background:
I have a wsdl and schema files with a lot of hierarchy, meaning there are a lot of import/include tags in the schema. I have a netbeans project and used wsimport to generate ...
0
votes
0answers
52 views
Compiling cyclic dependent schemas with XJC
I am not able to compile two interdependent schemas with JAXB compiler XJC
I have two schemas Schema1 and Schema2. Schema1 depends on Schema2 and Schema2 depends on Schema1.
When I use XJC to ...
2
votes
2answers
102 views
How to generate class with field of type Date from xs:string element with JAXB
I have xsd schema file which I can't change.
Here is an excerpt that makes my problem:
<xs:element name="Event" maxOccurs="unbounded">
<xs:complexType>
<xs:all>
...
0
votes
1answer
564 views
JAXB default values from xsd when generating beans with xjc
When generating java beans from xsd files I would like to have the default values defined in the xsd file pre-set in the java beans as well. The unmarshalling process does not care about xsd defaults, ...
2
votes
2answers
654 views
How do I separate the <xsd:choice/> sub-elements into individual Collection properties using JAXB?
I have the following XSD fragment that is from a Vendor, I can't change the way it is specified:
<xsd:element name="navmap">
<xsd:complexType>
<xsd:choice minOccurs="0" ...
3
votes
1answer
1k views
JAXB empty node in bindings
JAXB can't parse the bindings for this example:
<xs:element name="classA" type="classA" substitutionGroup="classSubA"/>
<xs:complexType name="complexClassA" mixed="true">
...
1
vote
3answers
516 views
Why JAXB (jaxb2-maven-plugin) skips this attribute?
jaxb2-maven-plugin 1.3 skips an attribute from an object. I cannot modify the XSD. In the XSD (fragment):
<?xml version="1.0" encoding="ISO-8859-1" ?>
<xs:schema ...
0
votes
1answer
241 views
JAXB2 Basics Mergeable plugin: Setting a custom Merge Strategy
I have successfully activated the JAXB2 Basics 'Mergeable' plugin in an ant script as follows:
<target name="generate-sources" depends="clean">
<xjc destdir="${generated.src.dir}" ...
1
vote
1answer
351 views
custom binding to force Inner class creation or getters/setters for xs:element
I have a schema declaration as follow from a third-party provider.
<xs:complexType name="GroupParameterType">
<xs:sequence minOccurs="0" maxOccurs="4">
<xs:element ...