HttpResponseMessage.Builder Interface
public interface Builder
A builder to create an instance of HttpResponseMessage
Method Summary
Modifier and Type | Method and Description |
---|---|
Http |
body(Object body)
Sets the body of the HTTP response. |
Http |
build()
Creates an instance of HttpMessageResponse with the values configured in this builder. |
Http |
header(String key, String value)
Adds a (key, value) header to the response. |
Http |
status(HttpStatusType status)
Sets the status code to be used in the HttpResponseMessage object. You can provide standard HTTP Status using enum values from HttpStatus, or you can create a custom status code using custom(final int code). |
Method Details
body
public Builder body(Object body)
Sets the body of the HTTP response.
Parameters:
Returns:
build
public HttpResponseMessage build()
Creates an instance of HttpMessageResponse with the values configured in this builder.
Returns:
header
public Builder header(String key, String value)
Adds a (key, value) header to the response.
Parameters:
Returns:
status
public Builder status(HttpStatusType status)
Sets the status code to be used in the HttpResponseMessage object.
You can provide standard HTTP Status using enum values from HttpStatus, or you can create a custom status code using custom(final int code).
Parameters:
Returns:
Applies to
Azure SDK for Java