So how would an application.xml module element have to be handled? It should be something
like this, but the schema for the wrapping module element has an unbounded max:
| class Application
| {
| @XmlElementWrapper(name="module")
| @XmlElements(
| @XmlElement(name="connector", type=ConnectorModule.class),
| @XmlElement(name="java", type=JavaModule.class),
| ...
| )
| private List<Module> modules;
| }
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4093565#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...