类 AbstractAnnotatedMethodParameterProcessor
- java.lang.Object
-
- org.apache.dubbo.metadata.rest.AbstractAnnotatedMethodParameterProcessor
-
- 所有已实现的接口:
Comparable<org.apache.dubbo.common.lang.Prioritized>,org.apache.dubbo.common.lang.Prioritized,AnnotatedMethodParameterProcessor
- 直接已知子类:
AbstractRequestAnnotationParameterProcessor,DefaultValueParameterProcessor,HeaderParamParameterProcessor,ParamAnnotationParameterProcessor
public abstract class AbstractAnnotatedMethodParameterProcessor extends Object implements AnnotatedMethodParameterProcessor
The abstractAnnotatedMethodParameterProcessorimplementation- 从以下版本开始:
- 2.7.6
-
-
构造器概要
构造器 构造器 说明 AbstractAnnotatedMethodParameterProcessor()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voidprocess(Annotation annotation, Parameter parameter, int parameterIndex, Method method, Class<?> serviceType, Class<?> serviceInterfaceClass, RestMethodMetadata restMethodMetadata)Process the specified methodparameter-
从接口继承的方法 org.apache.dubbo.metadata.rest.AnnotatedMethodParameterProcessor
getAnnotationType
-
-
-
-
方法详细资料
-
process
public void process(Annotation annotation, Parameter parameter, int parameterIndex, Method method, Class<?> serviceType, Class<?> serviceInterfaceClass, RestMethodMetadata restMethodMetadata)
从接口复制的说明:AnnotatedMethodParameterProcessorProcess the specified methodparameter- 指定者:
process在接口中AnnotatedMethodParameterProcessor- 参数:
annotation-the target annotationwhose type isAnnotatedMethodParameterProcessor.getAnnotationType()parameter- the method parameterparameterIndex- the index of method parametermethod-method that parameter belongs toserviceType- Dubbo Service interface or typeserviceInterfaceClass- The type of Dubbo Service interfacerestMethodMetadata-the metadata is used to update
-
-