HttpResponseMessage.Builder Interface
public static interface HttpResponseMessage.Builder
A builder to create an instance of HttpResponseMessage
Method Summary
Modifier and Type | Method and Description |
---|---|
abstract Builder |
body(Object body)
Sets the body of the HTTP response. |
abstract
Http |
build()
Creates an instance of Http |
abstract Builder |
header(String key, String value)
Adds a (key, value) header to the response. |
abstract Builder |
status(HttpStatusType status)
Sets the status code to be used in the Http |
Method Details
body
public abstract HttpResponseMessage.Builder body(Object body)
Sets the body of the HTTP response.
Parameters:
Returns:
build
public abstract HttpResponseMessage build()
Creates an instance of HttpMessageResponse with the values configured in this builder.
Returns:
header
public abstract HttpResponseMessage.Builder header(String key, String value)
Adds a (key, value) header to the response.
Parameters:
Returns:
status
public abstract HttpResponseMessage.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(int code).
Parameters:
Returns:
Applies to
Azure SDK for Java