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
FieldsModifier and TypeFieldDescriptionfinal booleanIf it's non-blocking method within the runtime that won't always default to blocking -
Constructor Summary
ConstructorsConstructorDescriptionResteasyReactiveResourceInfo(String name, Class<?> declaringClass, Class[] parameterTypes, Set<String> classAnnotationNames, Set<String> methodAnnotationNames, boolean isNonBlocking) Deprecated.ResteasyReactiveResourceInfo(String name, Class<?> declaringClass, Class[] parameterTypes, Set<String> classAnnotationNames, Set<String> methodAnnotationNames, boolean isNonBlocking, String actualDeclaringClassName) -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.if you need the method, please open an issue so that we can document and test your use casegetName()getParameterAnnotations(int index) Class[]Class<?>
-
Field Details
-
isNonBlocking
public final boolean isNonBlockingIf it's non-blocking method within the runtime that won't always default to blocking
-
-
Constructor Details
-
Method Details
-
getName
-
getParameterTypes
-
getClassAnnotationNames
-
getMethodAnnotationNames
-
getMethod
-
getClassAnnotations
-
getAnnotations
-
getGenericReturnType
-
getResourceMethod
- Specified by:
getResourceMethodin interfacejakarta.ws.rs.container.ResourceInfo
-
getResourceClass
- Specified by:
getResourceClassin interfacejakarta.ws.rs.container.ResourceInfo
-
getParameterAnnotations
-
getMethodId
-
getActualDeclaringClassName
Deprecated.if you need the method, please open an issue so that we can document and test your use case- Returns:
- declaring class of a method that returns endpoint response
-