Some checks failed
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Failing after 28s
22 lines
429 B
Java
22 lines
429 B
Java
package xyz.mcutils.backend.common;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Getter;
|
|
import org.springframework.http.HttpStatusCode;
|
|
|
|
import java.util.List;
|
|
|
|
@AllArgsConstructor @Getter
|
|
public class Endpoint {
|
|
|
|
/**
|
|
* The endpoint.
|
|
*/
|
|
private final String endpoint;
|
|
|
|
/**
|
|
* The statuses that indicate that the endpoint is online.
|
|
*/
|
|
private final List<HttpStatusCode> allowedStatuses;
|
|
}
|