setterInjection(method, bean, beanName, endpointInject.uri(), endpointInject.ref());
}
Produce produce = method.getAnnotation(Produce.class);
if (produce != null && getPostProcessorHelper().matchContext(produce.context())) {
setterInjection(method, bean, beanName, produce.uri(), produce.ref());
}
}
protected void setterInjection(Method method, Object bean, String beanName, String endpointUri, String endpointRef) {
Class<?>[] parameterTypes = method.getParameterTypes();