Hi! Currently it is possible to write server side resource implementing two interfaces at the same time
Eg,. public class SomeResource implements OneResourceInterface, TwoResourceInterface does it possible to generate Proxy-based client based on more that one interface? http://cxf.apache.org/docs/jax-rs-client-api.html#JAX-RSClientAPI-Proxy-basedAPI Currently I am see only possibility to generate two ProxyBased client interfaces an combine them in client side? in class like public class SomeResourceClient implements OneResourceInterface, TwoResourceInterface
