Work with interfaces and abstract classes

WARNING - TOPIC NOT WRITTEN - TOPIC ID: 2504

This topic has not yet been written. The content below is from the topic description.
As a workaround, RESTEasy allows you to use the JAXB annotation @XmlSeeAlso on the interface to correct the problem. (NOTE, this will not work with manual, hand-coded JAXB). @XmlSeeAlso(RealFoo.class) public interface IFoo {} The extra @XmlSeeAlso on IFoo allows RESTEasy to create a JAXBContext that knows how to unmarshal RealFoo instances.