All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m52s
48 lines
934 B
Java
48 lines
934 B
Java
package xyz.mcutils.backend.model.mojang;
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
import lombok.Getter;
|
|
import lombok.RequiredArgsConstructor;
|
|
import lombok.Setter;
|
|
|
|
@RequiredArgsConstructor
|
|
@Getter @Setter @EqualsAndHashCode
|
|
public class EndpointStatus {
|
|
|
|
/**
|
|
* The name of the service.
|
|
*/
|
|
private final String name;
|
|
|
|
/**
|
|
* The hostname of the service.
|
|
*/
|
|
private final String hostname;
|
|
|
|
/**
|
|
* The status of the service.
|
|
*/
|
|
private Status status;
|
|
|
|
/**
|
|
* Statuses for the endpoint.
|
|
*/
|
|
public enum Status {
|
|
/**
|
|
* The service is online and operational.
|
|
*/
|
|
ONLINE,
|
|
|
|
/**
|
|
* The service is online, but may be experiencing issues.
|
|
* This could be due to high load or other issues.
|
|
*/
|
|
DEGRADED,
|
|
|
|
/**
|
|
* The service is offline and not operational.
|
|
*/
|
|
OFFLINE
|
|
}
|
|
}
|