Uses of Class
javax.ws.rs.WebApplicationException

Packages that use WebApplicationException
com.restfully.shop.services   
com.sun.jersey.api Provides support for responses and exceptions. 
com.sun.jersey.api.core Provides support for configuration. 
com.sun.jersey.atom.abdera.impl.provider.entity JAX-RS AtomPub Provider Classes 
com.sun.jersey.core.impl.provider.entity   
com.sun.jersey.json.impl.provider.entity   
com.sun.jersey.multipart.impl   
com.sun.jersey.spi.container Provides support for containers and the web application that manages resource classes. 
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 com.restfully.shop.services
 

Methods in com.restfully.shop.services that throw WebApplicationException
 Object JavaMarshaller.readFrom(Class type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap httpHeaders, InputStream is)
           
 void JavaMarshaller.writeTo(Object o, Class type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap httpHeaders, OutputStream os)
           
 

Uses of WebApplicationException in com.sun.jersey.api
 

Subclasses of WebApplicationException in com.sun.jersey.api
 class ConflictException
          A HTTP 409 (Conflict) exception.
 class NotFoundException
          A HTTP 404 (Not Found) exception.
 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.
 

Uses of WebApplicationException in com.sun.jersey.api.core
 

Methods in com.sun.jersey.api.core that throw WebApplicationException
<T> T
HttpRequestContext.getEntity(Class<T> type)
          Get the request entity, returns null if the request does not contain an entity body.
<T> T
HttpRequestContext.getEntity(Class<T> type, Type genericType, Annotation[] as)
          Get the request entity, returns null if the request does not contain an entity body.
 

Uses of WebApplicationException in com.sun.jersey.atom.abdera.impl.provider.entity
 

Methods in com.sun.jersey.atom.abdera.impl.provider.entity that throw WebApplicationException
 org.apache.abdera.model.Categories CategoriesProvider.readFrom(Class<org.apache.abdera.model.Categories> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> headers, InputStream stream)
           
 org.apache.abdera.model.Entry EntryProvider.readFrom(Class<org.apache.abdera.model.Entry> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> headers, InputStream stream)
           
 org.apache.abdera.model.Feed FeedProvider.readFrom(Class<org.apache.abdera.model.Feed> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> headers, InputStream stream)
           
 org.apache.abdera.model.Service ServiceProvider.readFrom(Class<org.apache.abdera.model.Service> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> headers, InputStream stream)
           
 void CategoriesProvider.writeTo(org.apache.abdera.model.Categories categories, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> headers, OutputStream stream)
           
 void EntryProvider.writeTo(org.apache.abdera.model.Entry entry, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> headers, OutputStream stream)
           
 void FeedProvider.writeTo(org.apache.abdera.model.Feed feed, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> headers, OutputStream stream)
           
 void ServiceProvider.writeTo(org.apache.abdera.model.Service service, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> headers, OutputStream stream)
           
 

Uses of WebApplicationException in com.sun.jersey.core.impl.provider.entity
 

Methods in com.sun.jersey.core.impl.provider.entity that throw WebApplicationException
 void XMLRootObjectProvider.writeTo(Object arg0, Class<?> arg1, Type arg2, Annotation[] arg3, MediaType arg4, MultivaluedMap<String,Object> arg5, OutputStream arg6)
           
 

Uses of WebApplicationException in com.sun.jersey.json.impl.provider.entity
 

Methods in com.sun.jersey.json.impl.provider.entity that throw WebApplicationException
 JSONWithPadding JSONWithPaddingProvider.readFrom(Class<JSONWithPadding> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 Object JacksonProviderProxy.readFrom(Class<Object> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
           
 void JSONWithPaddingProvider.writeTo(JSONWithPadding t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 void JacksonProviderProxy.writeTo(Object t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
           
 

Uses of WebApplicationException in com.sun.jersey.multipart.impl
 

Methods in com.sun.jersey.multipart.impl that throw WebApplicationException
 MultiPart MultiPartReaderClientSide.readFrom(Class<MultiPart> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> headers, InputStream stream)
          Read the entire list of body parts from the Input stream, using the appropriate provider implementation to deserialize each body part's entity.
 void MultiPartWriter.writeTo(MultiPart entity, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> headers, OutputStream stream)
          Write the entire list of body parts to the output stream, using the appropriate provider implementation to serialize each body part's entity.
 

Uses of WebApplicationException in com.sun.jersey.spi.container
 

Methods in com.sun.jersey.spi.container with parameters of type WebApplicationException
 void ContainerResponse.mapWebApplicationException(WebApplicationException e)
          Map a web application exception to a response.
 void AdaptingContainerResponse.mapWebApplicationException(WebApplicationException e)
           
 

Methods in com.sun.jersey.spi.container that throw WebApplicationException
<T> T
AdaptingContainerRequest.getEntity(Class<T> type)
           
<T> T
AdaptingContainerRequest.getEntity(Class<T> type, Type genericType, Annotation[] as)
           
 

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



Copyright © 2013 Oracle Corporation. All Rights Reserved.