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.glassfish.jersey.client Jersey client-side classes. 
org.glassfish.jersey.filter Jersey Request & Response Filtering support & utility classes. 
org.glassfish.jersey.message Common Jersey messaging classes. 
org.glassfish.jersey.message.internal Common Jersey internal messaging classes. 
org.glassfish.jersey.server Jersey server-side classes. 
org.glassfish.jersey.server.internal Jersey server-side internal classes. 
org.glassfish.jersey.spi Common Jersey service provider contract (SPI) classes. 
 

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(java.lang.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(java.lang.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(java.lang.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(java.lang.String name, java.lang.Class<T> responseType)
          Invoke an arbitrary method for the current request synchronously.
<T> T
SyncInvoker.method(java.lang.String name, Entity<?> entity, java.lang.Class<T> responseType)
          Invoke an arbitrary method for the current request synchronously.
<T> T
SyncInvoker.method(java.lang.String name, Entity<?> entity, GenericType<T> responseType)
          Invoke an arbitrary method for the current request synchronously.
<T> T
SyncInvoker.method(java.lang.String name, GenericType<T> responseType)
          Invoke an arbitrary method for the current request synchronously.
<T> T
SyncInvoker.options(java.lang.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, java.lang.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, java.lang.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(java.lang.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(java.io.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
 java.lang.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(java.lang.Class<T> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, MediaType mediaType, MultivaluedMap<java.lang.String,java.lang.String> httpHeaders, java.io.InputStream entityStream)
          Read a type from the InputStream.
 void MessageBodyWriter.writeTo(T t, java.lang.Class<?> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, MediaType mediaType, MultivaluedMap<java.lang.String,java.lang.Object> httpHeaders, java.io.OutputStream entityStream)
          Write a type to an HTTP message.
 

Uses of WebApplicationException in org.glassfish.jersey.client
 

Methods in org.glassfish.jersey.client that throw WebApplicationException
<T> T
JerseyInvocation.Builder.delete(java.lang.Class<T> responseType)
           
<T> T
JerseyInvocation.Builder.delete(GenericType<T> responseType)
           
<T> T
JerseyInvocation.Builder.get(java.lang.Class<T> responseType)
           
<T> T
JerseyInvocation.Builder.get(GenericType<T> responseType)
           
 Response JerseyInvocation.invoke()
           
<T> T
JerseyInvocation.invoke(java.lang.Class<T> responseType)
           
<T> T
JerseyInvocation.invoke(GenericType<T> responseType)
           
<T> T
JerseyInvocation.Builder.method(java.lang.String name, java.lang.Class<T> responseType)
           
<T> T
JerseyInvocation.Builder.method(java.lang.String name, Entity<?> entity, java.lang.Class<T> responseType)
           
<T> T
JerseyInvocation.Builder.method(java.lang.String name, Entity<?> entity, GenericType<T> responseType)
           
<T> T
JerseyInvocation.Builder.method(java.lang.String name, GenericType<T> responseType)
           
<T> T
JerseyInvocation.Builder.options(java.lang.Class<T> responseType)
           
<T> T
JerseyInvocation.Builder.options(GenericType<T> responseType)
           
<T> T
JerseyInvocation.Builder.post(Entity<?> entity, java.lang.Class<T> responseType)
           
<T> T
JerseyInvocation.Builder.post(Entity<?> entity, GenericType<T> responseType)
           
<T> T
JerseyInvocation.Builder.put(Entity<?> entity, java.lang.Class<T> responseType)
           
<T> T
JerseyInvocation.Builder.put(Entity<?> entity, GenericType<T> responseType)
           
 ChunkedInput ChunkedInputReader.readFrom(java.lang.Class<ChunkedInput> chunkedInputClass, java.lang.reflect.Type type, java.lang.annotation.Annotation[] annotations, MediaType mediaType, MultivaluedMap<java.lang.String,java.lang.String> headers, java.io.InputStream inputStream)
           
<T> T
JerseyInvocation.Builder.trace(java.lang.Class<T> responseType)
           
<T> T
JerseyInvocation.Builder.trace(GenericType<T> responseType)
           
 

Uses of WebApplicationException in org.glassfish.jersey.filter
 

Methods in org.glassfish.jersey.filter that throw WebApplicationException
 void LoggingFilter.aroundWriteTo(WriterInterceptorContext writerInterceptorContext)
           
 

Uses of WebApplicationException in org.glassfish.jersey.message
 

Methods in org.glassfish.jersey.message that throw WebApplicationException
<T> java.lang.Object
MessageBodyWorkers.readFrom(java.lang.Class<T> rawType, java.lang.reflect.Type type, java.lang.annotation.Annotation[] annotations, MediaType mediaType, MultivaluedMap<java.lang.String,java.lang.String> httpHeaders, PropertiesDelegate propertiesDelegate, java.io.InputStream entityStream, boolean intercept)
          Reads a type from the entityStream using interceptors.
<T> java.io.OutputStream
MessageBodyWorkers.writeTo(java.lang.Object entity, java.lang.Class<T> rawType, java.lang.reflect.Type type, java.lang.annotation.Annotation[] annotations, MediaType mediaType, MultivaluedMap<java.lang.String,java.lang.Object> httpHeaders, PropertiesDelegate propertiesDelegate, java.io.OutputStream entityStream, MessageBodyWorkers.MessageBodySizeCallback sizeCallback, boolean intercept)
          Writers a type to the entityStream using interceptors.
<T> java.io.OutputStream
MessageBodyWorkers.writeTo(java.lang.Object entity, java.lang.Class<T> rawType, java.lang.reflect.Type type, java.lang.annotation.Annotation[] annotations, MediaType mediaType, MultivaluedMap<java.lang.String,java.lang.Object> httpHeaders, PropertiesDelegate propertiesDelegate, java.io.OutputStream entityStream, MessageBodyWorkers.MessageBodySizeCallback sizeCallback, boolean intercept, boolean writeEntity)
          Writers a type to the entityStream using interceptors.
 

Uses of WebApplicationException in org.glassfish.jersey.message.internal
 

Methods in org.glassfish.jersey.message.internal that throw WebApplicationException
 java.lang.Object ExceptionWrapperInterceptor.aroundReadFrom(ReaderInterceptorContext context)
           
 void ExceptionWrapperInterceptor.aroundWriteTo(WriterInterceptorContext context)
           
<T> java.lang.Object
MessageBodyFactory.readFrom(java.lang.Class<T> rawType, java.lang.reflect.Type type, java.lang.annotation.Annotation[] annotations, MediaType mediaType, MultivaluedMap<java.lang.String,java.lang.String> httpHeaders, PropertiesDelegate propertiesDelegate, java.io.InputStream entityStream, boolean intercept)
           
 void XmlRootObjectJaxbProvider.writeTo(java.lang.Object arg0, java.lang.Class<?> arg1, java.lang.reflect.Type arg2, java.lang.annotation.Annotation[] arg3, MediaType arg4, MultivaluedMap<java.lang.String,java.lang.Object> arg5, java.io.OutputStream arg6)
           
<T> java.io.OutputStream
MessageBodyFactory.writeTo(java.lang.Object t, java.lang.Class<T> rawType, java.lang.reflect.Type type, java.lang.annotation.Annotation[] annotations, MediaType mediaType, MultivaluedMap<java.lang.String,java.lang.Object> httpHeaders, PropertiesDelegate propertiesDelegate, java.io.OutputStream entityStream, MessageBodyWorkers.MessageBodySizeCallback sizeCallback, boolean intercept)
           
<T> java.io.OutputStream
MessageBodyFactory.writeTo(java.lang.Object t, java.lang.Class<T> rawType, java.lang.reflect.Type type, java.lang.annotation.Annotation[] annotations, MediaType mediaType, MultivaluedMap<java.lang.String,java.lang.Object> httpHeaders, PropertiesDelegate propertiesDelegate, java.io.OutputStream entityStream, MessageBodyWorkers.MessageBodySizeCallback sizeCallback, boolean intercept, boolean writeEntity)
           
 

Uses of WebApplicationException in org.glassfish.jersey.server
 

Subclasses of WebApplicationException in org.glassfish.jersey.server
 class ParamException
          An abstract extension of WebApplicationException for the class of parameter-based exceptions.
static class ParamException.CookieParamException
          A parameter exception for errors with CookieParam.
static class ParamException.FormParamException
          A parameter exception for errors with FormParam.
static class ParamException.HeaderParamException
          A parameter exception for errors with HeaderParam.
static class ParamException.MatrixParamException
          A URI-parameter-based exception for errors with MatrixParam.
static class ParamException.PathParamException
          A URI-parameter-based exception for errors with PathParam.
static class ParamException.QueryParamException
          A URI-parameter-based exception for errors with QueryParam.
static class ParamException.UriParamException
          An abstract parameter exception for the class of URI-parameter-based exceptions.
 

Methods in org.glassfish.jersey.server that throw WebApplicationException
 void ChunkedResponseWriter.writeTo(ChunkedOutput<?> chunkedOutput, java.lang.Class<?> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, MediaType mediaType, MultivaluedMap<java.lang.String,java.lang.Object> httpHeaders, java.io.OutputStream entityStream)
           
 

Uses of WebApplicationException in org.glassfish.jersey.server.internal
 

Methods in org.glassfish.jersey.server.internal that throw WebApplicationException
 void JsonWithPaddingInterceptor.aroundWriteTo(WriterInterceptorContext context)
           
 

Uses of WebApplicationException in org.glassfish.jersey.spi
 

Methods in org.glassfish.jersey.spi that throw WebApplicationException
 java.lang.Object ContentEncoder.aroundReadFrom(ReaderInterceptorContext context)
           
 void ContentEncoder.aroundWriteTo(WriterInterceptorContext context)
           
 



Copyright © 2007-2012 Oracle Corporation. All Rights Reserved. Use is subject to license terms.