接口 ServiceDescriptor
-
public interface ServiceDescriptorServiceModel and ServiceMetadata are to some extend duplicated with each other. We should merge them in the future.
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 Set<MethodDescriptor>getAllMethods()FullServiceDefinitiongetFullServiceDefinition(String serviceKey)StringgetInterfaceName()MethodDescriptorgetMethod(String methodName, Class<?>[] paramTypes)Does not use Optional as return type to avoid potential performance decrease.MethodDescriptorgetMethod(String methodName, String params)Does not use Optional as return type to avoid potential performance decrease.List<MethodDescriptor>getMethods(String methodName)Class<?>getServiceInterfaceClass()
-
-
-
方法详细资料
-
getFullServiceDefinition
FullServiceDefinition getFullServiceDefinition(String serviceKey)
-
getInterfaceName
String getInterfaceName()
-
getServiceInterfaceClass
Class<?> getServiceInterfaceClass()
-
getAllMethods
Set<MethodDescriptor> getAllMethods()
-
getMethod
MethodDescriptor getMethod(String methodName, String params)
Does not use Optional as return type to avoid potential performance decrease.- 参数:
methodName-params-- 返回:
-
getMethod
MethodDescriptor getMethod(String methodName, Class<?>[] paramTypes)
Does not use Optional as return type to avoid potential performance decrease.- 参数:
methodName-paramTypes-- 返回:
- methodDescriptor
-
getMethods
List<MethodDescriptor> getMethods(String methodName)
-
-