Uses of Class
jakarta.ws.rs.WebApplicationException
Package
Description
High-level interfaces and annotations used to create RESTful service resources.
Low-level interfaces and annotations used to create RESTful service resources.
APIs that provide extensions to the types supported by the JAX-RS API.
-
Uses of WebApplicationException in jakarta.ws.rs
Modifier and TypeClassDescriptionclass
A runtime exception indicating abad client request
.class
A base runtime application exception indicating a client request error (HTTP4xx
status codes).class
A runtime exception indicating that an access to a resource requested by a client has beenforbidden
by the server.class
A runtime exception indicating aninternal server error
.class
A runtime exception indicating that a client request isnot acceptable
by the server.class
A runtime exception indicating a client requesting a resource method that isnot allowed
.class
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
A runtime exception indicating a resource requested by a client wasnot found
on the server.class
A runtime exception indicating that the client request entity media type isnot supported
.class
A runtime application exception indicating a request redirection (HTTP3xx
status codes).class
A base runtime application exception indicating a server error (HTTP5xx
status codes).class
A runtime exception indicating that the requested resourcecannot be served
. -
Uses of WebApplicationException in jakarta.ws.rs.core
Modifier and TypeMethodDescriptionEntityPart.Builder.build()
Builds a new EntityPart instance using the provided property values.<T> T
EntityPart.getContent
(GenericType<T> type) Converts the content stream for this part to the specified type and returns it.<T> T
EntityPart.getContent
(Class<T> type) Converts the content stream for this part to the specified class and returns it.void
StreamingOutput.write
(OutputStream output) Called to write the message body. -
Uses of WebApplicationException in jakarta.ws.rs.ext
Modifier and TypeMethodDescriptionReaderInterceptor.aroundReadFrom
(ReaderInterceptorContext context) void
WriterInterceptor.aroundWriteTo
(WriterInterceptorContext context) ReaderInterceptorContext.proceed()
Proceed to the next interceptor in the chain.void
WriterInterceptorContext.proceed()
Proceed to the next interceptor in the chain.MessageBodyReader.readFrom
(Class<T> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String, String> httpHeaders, InputStream entityStream) Read a type from theInputStream
.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.