Hi,
How i can release inheritance with CXF and AEGIS databinding?
I founded some information in the web, but i can't find any worked example.

For example:
On server i have two classes

public class Animal{
   private String name;
   ...
}

public class Fox extends Animal{
   private Integer weight;
   ... 
}

but on client side i see only one class:

public class Fox{
   private String name;
   private Integer weight;
}

But i need inheritance. How i can do that? Maybe i need some annotations or
something else...
Please help me. This is realy important thing for my project.


-- 
View this message in context: 
http://cxf.547215.n5.nabble.com/Apache-CXF-and-inheritance-tp2262868p2262868.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to