Java org.springframework.boot.actuate.endpoint.web WebEndpointResponse fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.boot.actuate.endpoint.web WebEndpointResponse fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.boot.actuate.endpoint.web WebEndpointResponse.

The text is from its open source code.

Field

intSTATUS_TOO_MANY_REQUESTS
429 Too Many Requests .
intSTATUS_INTERNAL_SERVER_ERROR
500 Internal Server Error .
intSTATUS_SERVICE_UNAVAILABLE
503 Service Unavailable .

Constructor

WebEndpointResponse(int status)
Creates a new WebEndpointResponse with no body and the given status .
WebEndpointResponse(T body)
Creates a new WebEndpointResponse with then given body and a 200 (OK) status.