Hi,
We are trying to enhance a class with OSGI Weaver using the JEnhancer.THIS instance as a class transformer. Works very well except for some entities, i.e. we do have an entity which has:
@Override
public String getQubletHeadingMain(LanguageContext context)
This is a simple implementation of our custom interface and should of course, NOT be enhanced. Yet, we get an error due enhancing:
Failed to generate dynamic type com.quasado.galaxy.foundation.api.language.LanguageContext
I am curious why he does even try to generate dynamic type?? Can he simply ignore such things and enhance the regular getters and setter of my entity without error?
Alex