Re: Schema generation issues

2009-07-06 Thread Daniel Kulp
Sergey, On Thu July 2 2009 12:59:10 pm Sergey Beryozkin wrote: I have problems with the JAXB schema generation. Consider this bean : @XmlRootElement(name=thebook, namespace=http://books;) public class Book { private int id; public Book() { } public int getId() { return id; }

Re: Schema generation issues

2009-07-06 Thread Sergey Beryozkin
Hi Dan thanks... I'm looking now at JAXBDatabinding's JAXBBeanInfo which looks like exactly what I need - I'm thinking of moving JAXBBeanInfo and JAXBContextProxy into common/utils/jaxb as at the moment it's not quite feasible to reuse JAXBDataBinding as is from JAX-RS due to different models.