Class SeeOther

All Implemented Interfaces:
HttpMessage, HttpResponse
Direct Known Subclasses:
SeeOtherRoot

@Response @StatusCode(303) @Schema(description="See Other") public class SeeOther extends BasicHttpResponse
Represents an HTTP 303 See Other response.

The response to the request can be found under another URI using the GET method. When received in response to a POST (or PUT/DELETE), the client should presume that the server has received the data and should issue a new GET request to the given URI.

See Also: