update mojang endpoint to include the name of the service
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 2m18s

This commit is contained in:
Lee
2024-04-19 17:21:10 +01:00
parent 03c679d25c
commit 8a985b52b8
3 changed files with 55 additions and 55 deletions

View File

@ -2,18 +2,33 @@ package xyz.mcutils.backend.model.mojang;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import lombok.Setter;
import java.util.Map;
@AllArgsConstructor
@Getter
@RequiredArgsConstructor
@Getter @Setter
public class EndpointStatus {
/**
* The list of endpoints and their status.
* The name of the service.
*/
private final Map<String, Status> endpoints;
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.