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 booleanisNonBlockingIf 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()TypegetGenericReturnType()MethodgetMethod()Set<String>getMethodAnnotationNames()StringgetMethodId()StringgetName()Annotation[]getParameterAnnotations(int index)Class[]getParameterTypes()Class<?>getResourceClass()MethodgetResourceMethod()
-
-
-
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:
getResourceMethodin interfacejakarta.ws.rs.container.ResourceInfo
-
getResourceClass
public Class<?> getResourceClass()
- Specified by:
getResourceClassin interfacejakarta.ws.rs.container.ResourceInfo
-
getParameterAnnotations
public Annotation[] getParameterAnnotations(int index)
-
getMethodId
public String getMethodId()
-
-