Description
Hi
today org.apache.cxf.common.util.ClassHelper relies on spring aop or no-op logic. Would be great to be able to enrich it (actually I guess it should be done from the bus or server level).
Use cases: EJB, CDI, ...any other IoC container or interception solution.
I think a chain and an algorithm like the next one would not be so bad "while (wasUnwrap) { for (Unwraper u : unwrappers)
{ Object unwrapped = u.unwrap(o); wasUnwrap = unwraped != o; o = unwrapped; }} return unwrapped;"