Class ResteasyReactiveResourceInfo
- java.lang.Object
-
- org.jboss.resteasy.reactive.server.spi.ResteasyReactiveResourceInfo
-
- All Implemented Interfaces:
jakarta.ws.rs.container.ResourceInfo
public class ResteasyReactiveResourceInfo extends Object implements jakarta.ws.rs.container.ResourceInfo
A lazy representation of a Method Only loaded if actually needed, which should not be the case generally unless custom Serialization is in use.
-
-
Field Summary
Fields Modifier and Type Field Description boolean
isNonBlocking
If it's non-blocking method within the runtime that won't always default to blocking
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Annotation[]
getAnnotations()
Set<String>
getClassAnnotationNames()
Annotation[]
getClassAnnotations()
Type
getGenericReturnType()
Method
getMethod()
Set<String>
getMethodAnnotationNames()
String
getMethodId()
String
getName()
Annotation[]
getParameterAnnotations(int index)
Class[]
getParameterTypes()
Class<?>
getResourceClass()
Method
getResourceMethod()
-
-
-
Method Detail
-
getName
public String getName()
-
getParameterTypes
public Class[] getParameterTypes()
-
getMethod
public Method getMethod()
-
getClassAnnotations
public Annotation[] getClassAnnotations()
-
getAnnotations
public Annotation[] getAnnotations()
-
getGenericReturnType
public Type getGenericReturnType()
-
getResourceMethod
public Method getResourceMethod()
- Specified by:
getResourceMethod
in interfacejakarta.ws.rs.container.ResourceInfo
-
getResourceClass
public Class<?> getResourceClass()
- Specified by:
getResourceClass
in interfacejakarta.ws.rs.container.ResourceInfo
-
getParameterAnnotations
public Annotation[] getParameterAnnotations(int index)
-
getMethodId
public String getMethodId()
-
-