in impl/src/main/java/org/apache/geronimo/config/cdi/ConfigurationHandler.java [58:71]
public Object invoke(final Object proxy, final Method method, final Object[] args) throws Throwable {
if (Object.class == method.getDeclaringClass()) {
try {
return method.invoke(this, args);
} catch (final InvocationTargetException ite) {
throw ite.getTargetException();
}
}
final MethodMeta methodMeta = methodMetas.get(method);
if (methodMeta != null) {
return methodMeta.read(config);
}
return null;
}