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 class
NoMessageBodyWriterFoundFailure
Methods in org.jboss.resteasy.core with parameters of type Failure Modifier and Type Method Description protected javax.ws.rs.core.Response
ExceptionHandler. handleFailure(HttpRequest request, Failure failure)
Methods in org.jboss.resteasy.core that throw Failure Modifier and Type Method Description java.lang.Object
ConstructorInjectorImpl. construct(HttpRequest request, HttpResponse httpResponse)
ResourceInvoker
SynchronousDispatcher. getInvoker(HttpRequest request)
void
PropertyInjectorImpl. inject(HttpRequest request, HttpResponse response, java.lang.Object target)
void
ResourcePropertyInjector. inject(HttpRequest request, HttpResponse response, java.lang.Object target)
java.lang.Object
MethodInjectorImpl. 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 class
JAXBMarshalException
class
JAXBUnmarshalException
-
Uses of Failure in org.jboss.resteasy.spi
Subclasses of Failure in org.jboss.resteasy.spi Modifier and Type Class Description class
BadRequestException
Thrown by RESTEasy when HTTP Bad Request (400) is encounteredclass
DefaultOptionsMethodException
This exception is thrown when the client invokes HTTP OPTIONS operation and the JAX-RS resource does not have a Java method that supports OPTIONS.class
ForbiddenException
Deprecated.Replaced by javax.ws.rs.ForbiddenException in jaxrs-api module.class
InternalServerErrorException
Thrown by RESTEasy when HTTP Internal Service Error (500) is encounteredclass
LoggableFailure
This exception should only be used by Resteasy integrators.class
MethodNotAllowedException
Deprecated.Replaced by javax.ws.rs.NotAllowedException in jaxrs-api module.class
NotAcceptableException
Deprecated.Replaced by javax.ws.rs.NotAcceptableException in jaxrs-api module.class
NotFoundException
Deprecated.Replaced by javax.ws.rs.NotFoundException in jaxrs-api module.class
ReaderException
Any 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.class
UnauthorizedException
Deprecated.Replaced by javax.ws.rs.NotAuthorizedException in jaxrs-api module.class
UnsupportedMediaTypeException
Deprecated.Replaced by javax.ws.rs.NotSupportedException in jaxrs-api module.class
WriterException
Any 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.Object
ConstructorInjector. construct(HttpRequest request, HttpResponse response)
construct inside the scope of an HTTP request.void
PropertyInjector. 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.Object
MethodInjector. 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 ServerResponse
PreProcessInterceptor. preProcess(HttpRequest request, ResourceMethodInvoker method)
Deprecated.Preprocess resource method invocation
-