Uses of Class
org.jboss.resteasy.spi.Failure
-
Packages that use Failure Package Description org.jboss.resteasy.core org.jboss.resteasy.plugins.providers.jaxb org.jboss.resteasy.spi org.jboss.resteasy.spi.interception JAX-RS specification 1.1 ({@link https://jcp.org/en/jsr/detail?id=311}) had no interceptor framework, so Resteasy release 2.x provided one. -
-
Uses of Failure in org.jboss.resteasy.core
Subclasses of Failure in org.jboss.resteasy.core Modifier and Type Class Description classNoMessageBodyWriterFoundFailureMethods in org.jboss.resteasy.core with parameters of type Failure Modifier and Type Method Description protected javax.ws.rs.core.ResponseExceptionHandler. handleFailure(HttpRequest request, Failure failure)Methods in org.jboss.resteasy.core that throw Failure Modifier and Type Method Description java.lang.ObjectConstructorInjectorImpl. construct(HttpRequest request, HttpResponse httpResponse)ResourceInvokerSynchronousDispatcher. getInvoker(HttpRequest request)voidPropertyInjectorImpl. inject(HttpRequest request, HttpResponse response, java.lang.Object target)voidResourcePropertyInjector. inject(HttpRequest request, HttpResponse response, java.lang.Object target)java.lang.ObjectMethodInjectorImpl. invoke(HttpRequest request, HttpResponse httpResponse, java.lang.Object resource) -
Uses of Failure in org.jboss.resteasy.plugins.providers.jaxb
Subclasses of Failure in org.jboss.resteasy.plugins.providers.jaxb Modifier and Type Class Description classJAXBMarshalExceptionclassJAXBUnmarshalException -
Uses of Failure in org.jboss.resteasy.spi
Subclasses of Failure in org.jboss.resteasy.spi Modifier and Type Class Description classBadRequestExceptionThrown by RESTEasy when HTTP Bad Request (400) is encounteredclassDefaultOptionsMethodExceptionThis exception is thrown when the client invokes HTTP OPTIONS operation and the JAX-RS resource does not have a Java method that supports OPTIONS.classForbiddenExceptionDeprecated.Replaced by javax.ws.rs.ForbiddenException in jaxrs-api module.classInternalServerErrorExceptionThrown by RESTEasy when HTTP Internal Service Error (500) is encounteredclassLoggableFailureThis exception should only be used by Resteasy integrators.classMethodNotAllowedExceptionDeprecated.Replaced by javax.ws.rs.NotAllowedException in jaxrs-api module.classNotAcceptableExceptionDeprecated.Replaced by javax.ws.rs.NotAcceptableException in jaxrs-api module.classNotFoundExceptionDeprecated.Replaced by javax.ws.rs.NotFoundException in jaxrs-api module.classReaderExceptionAny exception thrown by a MessageBodyReader chain that is not an instance of a ReaderException is caught internally by the Resteasy runtime and wrapped with an instance of ReaderException.classUnauthorizedExceptionDeprecated.Replaced by javax.ws.rs.NotAuthorizedException in jaxrs-api module.classUnsupportedMediaTypeExceptionDeprecated.Replaced by javax.ws.rs.NotSupportedException in jaxrs-api module.classWriterExceptionAny exception thrown by a MessageBodyWriter chain that is not an instance of a WriterException is caught internally by the Resteasy runtime and wrapped with an instance of WriterException.Methods in org.jboss.resteasy.spi that throw Failure Modifier and Type Method Description java.lang.ObjectConstructorInjector. construct(HttpRequest request, HttpResponse response)construct inside the scope of an HTTP request.voidPropertyInjector. inject(HttpRequest request, HttpResponse response, java.lang.Object target)Inject values into annotated properties (fields/setter methods) of the target object.java.lang.Object[]ConstructorInjector. injectableArguments(HttpRequest request, HttpResponse response)Create an argument list inside the scope of an HTTP request.java.lang.Object[]MethodInjector. injectArguments(HttpRequest request, HttpResponse response)Create the arguments that would be used to invoke the method in the context of an HTTP request.java.lang.ObjectMethodInjector. invoke(HttpRequest request, HttpResponse response, java.lang.Object target)Invoke on a method in the context of an HTTP request. -
Uses of Failure in org.jboss.resteasy.spi.interception
Methods in org.jboss.resteasy.spi.interception that throw Failure Modifier and Type Method Description ServerResponsePreProcessInterceptor. preProcess(HttpRequest request, ResourceMethodInvoker method)Deprecated.Preprocess resource method invocation
-