Class NotModified

java.lang.Object
org.apache.juneau.http.response.BasicHttpResponse
org.apache.juneau.http.response.NotModified
All Implemented Interfaces:
HttpMessage, HttpResponse

@Response @StatusCode(304) @Schema(description="Not Modified") public class NotModified extends BasicHttpResponse
Represents an HTTP 304 Not Modified response.

Indicates that the resource has not been modified since the version specified by the request headers If-Modified-Since or If-None-Match. In such case, there is no need to retransmit the resource since the client still has a previously-downloaded copy.

See Also: