Tagged Questions
2
votes
0answers
47 views
Can I process jaxb annotations at compile-time?
I am experimenting to see if I can somehow make JAXB work on Android in a limited scenario. (using other libraries is not an option).
I have gotten pretty far but at the moment I am stuck getting the ...
2
votes
2answers
119 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" ...
2
votes
5answers
5k views
What is the Jaxb equivalent of a CData Block?
I am looking to convert a class that looks like this ...
public class Amenity {
public String id;
public String value;
}
into the following XML using JaxB annotations:
<amenity ...
0
votes
1answer
316 views
how to avoid inheritance when using JAXB schemagen?
I'm using JAXB annotations and schemagen maven plugin to create an xsd. I need to process that xsd with wsdl2py to create a Python's client. But as I have inheritance in my classes, schemagen creates ...