Uses of Class
javax.ws.rs.WebApplicationException

Packages that use WebApplicationException
javax.ws.rs High-level interfaces and annotations used to create RESTful service resources. 
javax.ws.rs.client The JAX-RS client API 
javax.ws.rs.core Low-level interfaces and annotations used to create RESTful service resources. 
javax.ws.rs.ext APIs that provide extensions to the types supported by the JAX-RS API. 
org.jboss.resteasy.cdi   
org.jboss.resteasy.cdi.decorators This package (along with @see org.jboss.resteasy.test.cdi.decorators) tests the application of CDI decorators to: *) ContainerRequestFilter *) ContainerResponseFilter *) ReaderInterceptor *) MessageBodyReader *) WriterInterceptor *) MessageBodyWriter *) Resources 
org.jboss.resteasy.cdi.ejb This package (along with @see org.jboss.resteasy.test.cdi.ejb) tests EJBs used as JAX-RS components. 
org.jboss.resteasy.cdi.events This package (along with @see org.jboss.resteasy.test.cdi.events) tests CDI event processing with JAX-RS components. 
org.jboss.resteasy.cdi.extension.bean This package (along with @see org.jboss.resteasy.test.cdi.extension.bean) introduces an application defined implementation of javax.enterprise.inject.spi.Bean. 
org.jboss.resteasy.cdi.injection This package (along with @see org.jboss.resteasy.test.cdi.injection) tests injection into JAX-RS components. 
org.jboss.resteasy.cdi.interceptors This package (along with @see org.jboss.resteasy.test.cdi.interceptors) tests the application of interceptors to: *) ContainerRequestFilter *) ContainerResponseFilter *) ReaderInterceptor *) MessageBodyReader *) WriterInterceptor *) MessageBodyWriter *) Resources There are class level interceptors and method level interceptors. 
org.jboss.resteasy.client.jaxrs.internal   
org.jboss.resteasy.core   
org.jboss.resteasy.core.interception   
org.jboss.resteasy.plugins.cache.server   
org.jboss.resteasy.plugins.interceptors.encoding   
org.jboss.resteasy.plugins.providers   
org.jboss.resteasy.plugins.providers.atom   
org.jboss.resteasy.plugins.providers.html   
org.jboss.resteasy.plugins.providers.jackson   
org.jboss.resteasy.plugins.providers.jaxb   
org.jboss.resteasy.plugins.providers.jaxb.json   
org.jboss.resteasy.plugins.providers.multipart   
org.jboss.resteasy.plugins.providers.validation   
org.jboss.resteasy.security.doseta   
org.jboss.resteasy.security.smime   
org.jboss.resteasy.spi   
org.jboss.resteasy.spi.interception   
org.jboss.resteasy.spi.validation   
 

Uses of WebApplicationException in javax.ws.rs
 

Subclasses of WebApplicationException in javax.ws.rs
 class BadRequestException
          A runtime exception indicating a bad client request.
 class ClientErrorException
          A base runtime application exception indicating a client request error (HTTP 4xx status codes).
 class InternalServerErrorException
          A runtime exception indicating an internal server error.
 class NotAcceptableException
          A runtime exception indicating that a client request is not acceptable by the server.
 class NotAllowedException
          A runtime exception indicating a client requesting a resource method that is not allowed.
 class NotAuthorizedException
          A runtime exception indicating request authorization failure caused by one of the following scenarios: a client did not send the required authorization credentials to access the requested resource, i.e.
 class NotFoundException
          A runtime exception indicating a resource requested by a client was not found on the server.
 class NotSupportedException
          A runtime exception indicating that the client request entity media type is not supported.
 class RedirectionException
          A runtime application exception indicating a request redirection (HTTP 3xx status codes).
 class ServerErrorException
          A base runtime application exception indicating a server error (HTTP 5xx status codes).
 class ServiceUnavailableException
          A runtime exception indicating that the requested resource cannot be served.
 

Uses of WebApplicationException in javax.ws.rs.client
 

Methods in javax.ws.rs.client that throw WebApplicationException
<T> T
SyncInvoker.delete(Class<T> responseType)
          Invoke HTTP DELETE method for the current request synchronously.
<T> T
SyncInvoker.delete(GenericType<T> responseType)
          Invoke HTTP DELETE method for the current request synchronously.
<T> T
SyncInvoker.get(Class<T> responseType)
          Invoke HTTP GET method for the current request synchronously.
<T> T
SyncInvoker.get(GenericType<T> responseType)
          Invoke HTTP GET method for the current request synchronously.
<T> T
Invocation.invoke(Class<T> responseType)
          Synchronously invoke the request and receive a response of the specified type back.
<T> T
Invocation.invoke(GenericType<T> responseType)
          Synchronously invoke the request and receive a response of the specified generic type back.
<T> T
SyncInvoker.method(String name, Class<T> responseType)
          Invoke an arbitrary method for the current request synchronously.
<T> T
SyncInvoker.method(String name, Entity<?> entity, Class<T> responseType)
          Invoke an arbitrary method for the current request synchronously.
<T> T
SyncInvoker.method(String name, Entity<?> entity, GenericType<T> responseType)
          Invoke an arbitrary method for the current request synchronously.
<T> T
SyncInvoker.method(String name, GenericType<T> responseType)
          Invoke an arbitrary method for the current request synchronously.
<T> T
SyncInvoker.options(Class<T> responseType)
          Invoke HTTP OPTIONS method for the current request synchronously.
<T> T
SyncInvoker.options(GenericType<T> responseType)
          Invoke HTTP OPTIONS method for the current request synchronously.
<T> T
SyncInvoker.post(Entity<?> entity, Class<T> responseType)
          Invoke HTTP POST method for the current request synchronously.
<T> T
SyncInvoker.post(Entity<?> entity, GenericType<T> responseType)
          Invoke HTTP POST method for the current request synchronously.
<T> T
SyncInvoker.put(Entity<?> entity, Class<T> responseType)
          Invoke HTTP PUT method for the current request synchronously.
<T> T
SyncInvoker.put(Entity<?> entity, GenericType<T> responseType)
          Invoke HTTP PUT method for the current request synchronously.
<T> T
SyncInvoker.trace(Class<T> responseType)
          Invoke HTTP TRACE method for the current request synchronously.
<T> T
SyncInvoker.trace(GenericType<T> responseType)
          Invoke HTTP TRACE method for the current request synchronously.
 

Uses of WebApplicationException in javax.ws.rs.core
 

Methods in javax.ws.rs.core that throw WebApplicationException
 void StreamingOutput.write(OutputStream output)
          Called to write the message body.
 

Uses of WebApplicationException in javax.ws.rs.ext
 

Methods in javax.ws.rs.ext that throw WebApplicationException
 Object ReaderInterceptor.aroundReadFrom(ReaderInterceptorContext context)
          Interceptor method wrapping calls to MessageBodyReader.readFrom(java.lang.Class, java.lang.reflect.Type, java.lang.annotation.Annotation[], javax.ws.rs.core.MediaType, javax.ws.rs.core.MultivaluedMap, java.io.InputStream).
 void WriterInterceptor.aroundWriteTo(WriterInterceptorContext context)
          Interceptor method wrapping calls to MessageBodyWriter.writeTo(T, java.lang.Class, java.lang.reflect.Type, java.lang.annotation.Annotation[], javax.ws.rs.core.MediaType, javax.ws.rs.core.MultivaluedMap, java.io.OutputStream).
 T MessageBodyReader.readFrom(Class<T> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
          Read a type from the InputStream.
 void MessageBodyWriter.writeTo(T t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
          Write a type to an HTTP message.
 

Uses of WebApplicationException in org.jboss.resteasy.cdi
 

Methods in org.jboss.resteasy.cdi that throw WebApplicationException
 Object CdiConstructorInjector.construct(HttpRequest request, HttpResponse response)
           
 void CdiPropertyInjector.inject(HttpRequest request, HttpResponse response, Object target)
           
 

Uses of WebApplicationException in org.jboss.resteasy.cdi.decorators
 

Methods in org.jboss.resteasy.cdi.decorators that throw WebApplicationException
 Object BookReaderInterceptorDecorator.aroundReadFrom(ReaderInterceptorContext context)
           
 Object BookReaderInterceptor.aroundReadFrom(ReaderInterceptorContext context)
           
 void BookWriterInterceptorDecorator.aroundWriteTo(WriterInterceptorContext context)
           
 void BookWriterInterceptor.aroundWriteTo(WriterInterceptorContext context)
           
 Book BookReaderDecorator.readFrom(Class<Book> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 Book BookReader.readFrom(Class<Book> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 void BookWriterDecorator.writeTo(Book t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 void BookWriter.writeTo(Book t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 

Uses of WebApplicationException in org.jboss.resteasy.cdi.ejb
 

Methods in org.jboss.resteasy.cdi.ejb that throw WebApplicationException
 Book EJBBookReaderImpl.readFrom(Class<Book> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 void EJBBookWriterImpl.writeTo(Book t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 

Uses of WebApplicationException in org.jboss.resteasy.cdi.events
 

Methods in org.jboss.resteasy.cdi.events that throw WebApplicationException
 Object BookReaderInterceptor.aroundReadFrom(ReaderInterceptorContext context)
           
 void BookWriterInterceptor.aroundWriteTo(WriterInterceptorContext context)
           
 Book BookReader.readFrom(Class<Book> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 void BookWriter.writeTo(Book t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 

Uses of WebApplicationException in org.jboss.resteasy.cdi.extension.bean
 

Methods in org.jboss.resteasy.cdi.extension.bean that throw WebApplicationException
 Object TestReader.readFrom(Class<Object> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 

Uses of WebApplicationException in org.jboss.resteasy.cdi.injection
 

Methods in org.jboss.resteasy.cdi.injection that throw WebApplicationException
 Book BookReader.readFrom(Class<Book> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 void BookWriter.writeTo(Book t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 

Uses of WebApplicationException in org.jboss.resteasy.cdi.interceptors
 

Methods in org.jboss.resteasy.cdi.interceptors that throw WebApplicationException
 Object BookReaderInterceptor.aroundReadFrom(ReaderInterceptorContext context)
           
 void BookWriterInterceptor.aroundWriteTo(WriterInterceptorContext context)
           
 Book BookReader.readFrom(Class<Book> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 void BookWriter.writeTo(Book t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 

Uses of WebApplicationException in org.jboss.resteasy.client.jaxrs.internal
 

Methods in org.jboss.resteasy.client.jaxrs.internal that throw WebApplicationException
<T> T
ClientInvocationBuilder.delete(Class<T> responseType)
           
<T> T
ClientInvocationBuilder.delete(GenericType<T> responseType)
           
<T> T
ClientInvocationBuilder.get(Class<T> responseType)
           
<T> T
ClientInvocationBuilder.get(GenericType<T> responseType)
           
<T> T
ClientInvocation.invoke(Class<T> responseType)
           
<T> T
ClientInvocation.invoke(GenericType<T> responseType)
           
<T> T
ClientInvocationBuilder.method(String name, Class<T> responseType)
           
<T> T
ClientInvocationBuilder.method(String name, Entity<?> entity, Class<T> responseType)
           
<T> T
ClientInvocationBuilder.method(String name, Entity<?> entity, GenericType<T> responseType)
           
<T> T
ClientInvocationBuilder.method(String name, GenericType<T> responseType)
           
<T> T
ClientInvocationBuilder.options(Class<T> responseType)
           
<T> T
ClientInvocationBuilder.options(GenericType<T> responseType)
           
<T> T
ClientInvocationBuilder.post(Entity<?> entity, Class<T> responseType)
           
<T> T
ClientInvocationBuilder.post(Entity<?> entity, GenericType<T> responseType)
           
 Response ClientInvocationBuilder.put(Entity<?> entity)
           
<T> T
ClientInvocationBuilder.put(Entity<?> entity, Class<T> responseType)
           
<T> T
ClientInvocationBuilder.put(Entity<?> entity, GenericType<T> responseType)
           
<T> T
ClientInvocationBuilder.trace(Class<T> responseType)
           
<T> T
ClientInvocationBuilder.trace(GenericType<T> responseType)
           
 

Uses of WebApplicationException in org.jboss.resteasy.core
 

Methods in org.jboss.resteasy.core with parameters of type WebApplicationException
protected  void SynchronousDispatcher.handleWebApplicationException(HttpRequest request, HttpResponse response, WebApplicationException wae)
           
 

Methods in org.jboss.resteasy.core that throw WebApplicationException
 Object ConstructorInjectorImpl.construct(HttpRequest request, HttpResponse httpResponse)
           
 

Uses of WebApplicationException in org.jboss.resteasy.core.interception
 

Methods in org.jboss.resteasy.core.interception that throw WebApplicationException
 Object ReaderInterceptorRegistry.ReaderInterceptorFacade.aroundReadFrom(ReaderInterceptorContext readerInterceptorContext)
           
 void WriterInterceptorRegistry.WriterInterceptorFacade.aroundWriteTo(WriterInterceptorContext writerInterceptorContext)
           
 void AbstractWriterInterceptorContext.proceed()
           
 

Uses of WebApplicationException in org.jboss.resteasy.plugins.cache.server
 

Methods in org.jboss.resteasy.plugins.cache.server that throw WebApplicationException
 void ServerCacheInterceptor.aroundWriteTo(WriterInterceptorContext context)
           
 

Uses of WebApplicationException in org.jboss.resteasy.plugins.interceptors.encoding
 

Methods in org.jboss.resteasy.plugins.interceptors.encoding that throw WebApplicationException
 Object GZIPDecodingInterceptor.aroundReadFrom(ReaderInterceptorContext context)
           
 void ServerContentEncodingAnnotationFilter.aroundWriteTo(WriterInterceptorContext context)
           
 void GZIPEncodingInterceptor.aroundWriteTo(WriterInterceptorContext context)
           
 void ClientContentEncodingAnnotationFilter.aroundWriteTo(WriterInterceptorContext context)
           
 

Uses of WebApplicationException in org.jboss.resteasy.plugins.providers
 

Methods in org.jboss.resteasy.plugins.providers that throw WebApplicationException
 Document DocumentProvider.readFrom(Class<Document> clazz, Type type, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> headers, InputStream input)
           
 Form JaxrsFormProvider.readFrom(Class<Form> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 Object YamlProvider.readFrom(Class<Object> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 Serializable SerializableProvider.readFrom(Class<Serializable> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 Object DefaultTextPlain.readFrom(Class type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap httpHeaders, InputStream entityStream)
           
 void DocumentProvider.writeTo(Document document, Class<?> clazz, Type type, Annotation[] annotation, MediaType mediaType, MultivaluedMap<String,Object> headers, OutputStream output)
           
 void JaxrsFormProvider.writeTo(Form form, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 void YamlProvider.writeTo(Object t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 void DefaultTextPlain.writeTo(Object o, Class type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap httpHeaders, OutputStream entityStream)
           
 void SerializableProvider.writeTo(Serializable t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 

Uses of WebApplicationException in org.jboss.resteasy.plugins.providers.atom
 

Methods in org.jboss.resteasy.plugins.providers.atom that throw WebApplicationException
 Entry AtomEntryProvider.readFrom(Class<Entry> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 Feed AtomFeedProvider.readFrom(Class<Feed> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 void AtomEntryProvider.writeTo(Entry entry, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 void AtomFeedProvider.writeTo(Feed feed, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 

Uses of WebApplicationException in org.jboss.resteasy.plugins.providers.html
 

Methods in org.jboss.resteasy.plugins.providers.html that throw WebApplicationException
 void View.render(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Sets up the model in the request attributes, creates a dispatcher, and forwards the request.
 void Renderable.render(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Called to do the actual work of rendering a view.
 void Redirect.render(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
 void HtmlRenderableWriter.writeTo(Renderable viewingPleasure, Class type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap httpHeaders, OutputStream entityStream)
           
 

Uses of WebApplicationException in org.jboss.resteasy.plugins.providers.jackson
 

Methods in org.jboss.resteasy.plugins.providers.jackson that throw WebApplicationException
 void JacksonJsonpInterceptor.aroundWriteTo(WriterInterceptorContext context)
          Interceptor method wrapping calls to MessageBodyWriter.writeTo(T, java.lang.Class, java.lang.reflect.Type, java.lang.annotation.Annotation[], javax.ws.rs.core.MediaType, javax.ws.rs.core.MultivaluedMap, java.io.OutputStream).
 

Uses of WebApplicationException in org.jboss.resteasy.plugins.providers.jaxb
 

Methods in org.jboss.resteasy.plugins.providers.jaxb that throw WebApplicationException
 Object MapProvider.readFrom(Class<Object> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 Object CollectionProvider.readFrom(Class<Object> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 void MapProvider.writeTo(Object target, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 void CollectionProvider.writeTo(Object entry, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 

Uses of WebApplicationException in org.jboss.resteasy.plugins.providers.jaxb.json
 

Methods in org.jboss.resteasy.plugins.providers.jaxb.json that throw WebApplicationException
 Object JsonMapProvider.readFrom(Class<Object> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 Object JsonCollectionProvider.readFrom(Class<Object> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 void JsonMapProvider.writeTo(Object target, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 void JsonCollectionProvider.writeTo(Object entry, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 

Uses of WebApplicationException in org.jboss.resteasy.plugins.providers.multipart
 

Methods in org.jboss.resteasy.plugins.providers.multipart that throw WebApplicationException
 List<?> ListMultipartReader.readFrom(Class<List<?>> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 Map<?,?> MapMultipartFormDataReader.readFrom(Class<Map<?,?>> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 MultipartFormDataInput MultipartFormDataReader.readFrom(Class<MultipartFormDataInput> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 MultipartInput MultipartReader.readFrom(Class<MultipartInput> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 MultipartRelatedInput MultipartRelatedReader.readFrom(Class<MultipartRelatedInput> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 Object XopWithMultipartRelatedReader.readFrom(Class<Object> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 Object MultipartFormAnnotationReader.readFrom(Class<Object> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
protected  void AbstractMultipartRelatedWriter.writeRelated(MultipartRelatedOutput multipartRelatedOutput, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 void ListMultipartWriter.writeTo(List<Object> list, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 void MapMultipartFormDataWriter.writeTo(Map<String,Object> map, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 void MultipartFormDataWriter.writeTo(MultipartFormDataOutput multipartFormDataOutput, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 void MultipartWriter.writeTo(MultipartOutput multipartOutput, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 void MultipartRelatedWriter.writeTo(MultipartRelatedOutput multipartRelatedOutput, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 void XopWithMultipartRelatedWriter.writeTo(Object t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 void MultipartFormAnnotationWriter.writeTo(Object obj, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 

Uses of WebApplicationException in org.jboss.resteasy.plugins.providers.validation
 

Subclasses of WebApplicationException in org.jboss.resteasy.plugins.providers.validation
 class ResteasyViolationExceptionExtension
           
 

Uses of WebApplicationException in org.jboss.resteasy.security.doseta
 

Methods in org.jboss.resteasy.security.doseta that throw WebApplicationException
 Object DigitalVerificationInterceptor.aroundReadFrom(ReaderInterceptorContext context)
           
 void DigitalSigningInterceptor.aroundWriteTo(WriterInterceptorContext context)
           
 

Uses of WebApplicationException in org.jboss.resteasy.security.smime
 

Methods in org.jboss.resteasy.security.smime that throw WebApplicationException
 EnvelopedInput EnvelopedReader.readFrom(Class<EnvelopedInput> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> headers, InputStream entityStream)
           
 PKCS7SignatureInput PKCS7SignatureReader.readFrom(Class<PKCS7SignatureInput> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> headers, InputStream entityStream)
           
 SignedInput MultipartSignedReader.readFrom(Class<SignedInput> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> headers, InputStream entityStream)
           
 void EnvelopedWriter.writeTo(EnvelopedOutput out, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> headers, OutputStream os)
           
 void PKCS7SignatureWriter.writeTo(SignedOutput out, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> headers, OutputStream os)
           
 void PKCS7SignatureTextWriter.writeTo(SignedOutput out, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> headers, OutputStream os)
           
 void MultipartSignedWriter.writeTo(SignedOutput out, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> headers, OutputStream os)
           
 

Uses of WebApplicationException in org.jboss.resteasy.spi
 

Subclasses of WebApplicationException in org.jboss.resteasy.spi
 class NoLogWebApplicationException
          WebApplicationExceptions are logged by RESTEasy.
 

Methods in org.jboss.resteasy.spi that throw WebApplicationException
 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.
 

Uses of WebApplicationException in org.jboss.resteasy.spi.interception
 

Methods in org.jboss.resteasy.spi.interception that throw WebApplicationException
 ServerResponse PreProcessInterceptor.preProcess(HttpRequest request, ResourceMethod method)
          Deprecated. Preprocess resource method invocation
 void MessageBodyWriterContext.proceed()
          Deprecated.  
 Object MessageBodyReaderContext.proceed()
          Deprecated.  
 Object MessageBodyReaderInterceptor.read(MessageBodyReaderContext context)
          Deprecated.  
 void MessageBodyWriterInterceptor.write(MessageBodyWriterContext context)
          Deprecated.  
 

Uses of WebApplicationException in org.jboss.resteasy.spi.validation
 

Subclasses of WebApplicationException in org.jboss.resteasy.spi.validation
 class ResteasyViolationException
           
 



Copyright © 2013. All Rights Reserved.