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 (https://jcp.org/en/jsr/detail?id=311)
had no interceptor framework, so Resteasy release 2.x provided one.
|
Modifier and Type | Class and Description |
---|---|
class |
NoMessageBodyWriterFoundFailure |
Modifier and Type | Method and Description |
---|---|
protected Response |
ExceptionHandler.handleFailure(HttpRequest request,
Failure failure) |
Modifier and Type | Method and Description |
---|---|
Object |
ConstructorInjectorImpl.construct(HttpRequest request,
HttpResponse httpResponse) |
ResourceInvoker |
SynchronousDispatcher.getInvoker(HttpRequest request) |
void |
ResourcePropertyInjector.inject(HttpRequest request,
HttpResponse response,
Object target) |
void |
PropertyInjectorImpl.inject(HttpRequest request,
HttpResponse response,
Object target) |
Object |
MethodInjectorImpl.invoke(HttpRequest request,
HttpResponse httpResponse,
Object resource) |
Modifier and Type | Class and Description |
---|---|
class |
JAXBMarshalException |
class |
JAXBUnmarshalException |
Modifier and Type | Class and Description |
---|---|
class |
BadRequestException
Thrown by RESTEasy when HTTP Bad Request (400) is encountered
|
class |
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 encountered
|
class |
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.
|
Modifier and Type | Method and Description |
---|---|
Object |
ConstructorInjector.construct(HttpRequest request,
HttpResponse response)
construct inside the scope of an HTTP request.
|
void |
PropertyInjector.inject(HttpRequest request,
HttpResponse response,
Object target)
Inject values into annotated properties (fields/setter methods) of the target object.
|
Object[] |
ConstructorInjector.injectableArguments(HttpRequest request,
HttpResponse response)
Create an argument list inside the scope of an HTTP request.
|
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.
|
Object |
MethodInjector.invoke(HttpRequest request,
HttpResponse response,
Object target)
Invoke on a method in the context of an HTTP request.
|
Modifier and Type | Method and Description |
---|---|
ServerResponse |
PreProcessInterceptor.preProcess(HttpRequest request,
ResourceMethodInvoker method)
Deprecated.
Preprocess resource method invocation
|
Copyright © 2017 JBoss by Red Hat. All rights reserved.