Class PartialContent

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

@Response @StatusCode(206) @Schema(description="Partial Content") public class PartialContent extends BasicHttpResponse
Represents an HTTP 206 Partial Content response.

The server is delivering only part of the resource (byte serving) due to a range header sent by the client. The range header is used by HTTP clients to enable resuming of interrupted downloads, or split a download into multiple simultaneous streams.

See Also: