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.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. 
 

Uses of WebApplicationException in javax.ws.rs
 

Subclasses of WebApplicationException in javax.ws.rs
 class ValidationException
          Exception class used by JAX-RS implementations to report constraint validations.
 

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.
 



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