Interface SimpleResourceInfo
-
- All Known Implementing Classes:
ResteasyReactiveSimplifiedResourceInfo
,SimpleResourceInfo.NullValues
public interface SimpleResourceInfo
Type that can be injected into places where ResourceInfo can. The idea is that this can be used when a piece of code does not need access to the entire resource method (which entails a reflective lookup call), where the resource class, method name and parameter types will suffice
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
SimpleResourceInfo.NullValues
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getMethodName()
Get the name of the resource method that is the target of a requestClass<?>
getResourceClass()
Get the resource class that is the target of a request,Class<?>[]
parameterTypes()
Get the parameter types of the resource method that is the target of a request
-
-
-
Method Detail
-
getResourceClass
Class<?> getResourceClass()
Get the resource class that is the target of a request,
-
getMethodName
String getMethodName()
Get the name of the resource method that is the target of a request
-
parameterTypes
Class<?>[] parameterTypes()
Get the parameter types of the resource method that is the target of a request
-
-