Package org.apache.cxf.common.util
Interface ClassUnwrapper
public interface ClassUnwrapper
- 
Method SummaryModifier and TypeMethodDescriptionClass<?>Return a real class for the instance, possibly a proxy.Class<?>getRealClassFromClass(Class<?> clazz) Return a real class for the class, possibly a proxy class.default ObjectReturn a real class for the instance, possibly a proxy.
- 
Method Details- 
getRealClassReturn a real class for the instance, possibly a proxy.- Parameters:
- o- instance to get real class for
- Returns:
- real class for the instance
 
- 
getRealClassFromClassReturn a real class for the class, possibly a proxy class.- Parameters:
- clazz- class to get real class for
- Returns:
- real class for the class
 
- 
getRealObjectReturn a real class for the instance, possibly a proxy.- Parameters:
- o- instance to get real class for
- Returns:
- real class for the instance
 
 
-