Search in sources :

Example 1 with RpcReference

use of org.apache.servicecomb.provider.pojo.RpcReference in project incubator-servicecomb-java-chassis by apache.

the class RpcReferenceProcessor method processConsumerField.

protected void processConsumerField(Object bean, Field field) {
    RpcReference reference = field.getAnnotation(RpcReference.class);
    if (reference == null) {
        return;
    }
    handleReferenceField(bean, field, reference);
}
Also used : RpcReference(org.apache.servicecomb.provider.pojo.RpcReference)

Aggregations

RpcReference (org.apache.servicecomb.provider.pojo.RpcReference)1