353637383940414243
* * @author xfournet */ public class WS1Impl implements WS1 { public BeanA getBeanA() { BeanA a = new BeanA(); a.setPropA("valueA"); return a; }
303132333435363738
import org.apache.cxf.aegis.inheritance.ws1.WS1ExtendedException; import org.apache.cxf.aegis.services.SimpleBean; public class WS1Impl implements WS1 { public BeanA getBeanA() { BeanA a = new BeanA(); a.setPropA("valueA"); return a; }
41424344454647484950
a.setPropA("valueA"); return a; } public BeanB getBeanB() { BeanB b = new BeanB(); b.setPropA("valueA"); b.setPropB("valueB"); return b; }
36373839404142434445
4950515253545556575859
return b; } // not exported to interface to "hide" BeanC from interface introspection public BeanC getBeanC() { BeanC c = new BeanC(); c.setPropA("valueA"); c.setPropB("valueB"); c.setPropC("valueC"); return c; }
4445464748495051525354