classClassType = oracle.getType(ClassType.class.getCanonicalName());
} catch (NotFoundException e) {
throw new RuntimeException("Can not found reflection class, forgot include module xml file?" + e.getMessage());
}
ReflectionTarget target = classType.getAnnotation(ReflectionTarget.class);
if (target != null){
if (target.value() != null && target.value().length() > 0){
try {
return oracle.getType(target.value());
} catch (NotFoundException e) {
}
}
}