
|
If you were logged in you would be able to see more operations.
|
|
|
XFire
Created: 17/Jun/05 01:30 PM
Updated: 04/Jul/05 12:50 PM
|
|
| Component/s: |
None
|
| Affects Version/s: |
None
|
| Fix Version/s: |
1.0-M5
|
|
|
it would be cool if aegis could use xmlbeans for marshalling and unmarshalling.we could then mix normal java types with schema types.
|
|
Description
|
it would be cool if aegis could use xmlbeans for marshalling and unmarshalling.we could then mix normal java types with schema types. |
Show » |
|
http://cvs.xfire.codehaus.org/viewrep/xfire/xfire/xfire-xmlbeans/src/main/org/codehaus/xfire/xmlbeans/XMLBeansType.java?r=1.6
I think what could happen is you could write a TypeCreator which would be responsilbe for creating the XMLBeans type. Override getDefaultType() to look something like this:
if (XmlObject.class.isAssignableFrom(typeClass))
{
return new XMLBeansType()
}
else
{
return nextCreator.createDefaultType(...);
}