Java org.springframework.boot.actuate.health Status fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.boot.actuate.health Status fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.boot.actuate.health Status.

The text is from its open source code.

Field

StatusUNKNOWN
Status indicating that the component or subsystem is in an unknown state.
StatusUP
Status indicating that the component or subsystem is functioning as expected.
StatusDOWN
Status indicating that the component or subsystem has suffered an unexpected failure.
StatusOUT_OF_SERVICE
Status indicating that the component or subsystem has been taken out of service and should not be used.

Constructor

Status(String code)
Create a new Status instance with the given code and an empty description.
Status(String code, String description)
Create a new Status instance with the given code and description.