
dev.soffa.foundation.model.ResponseStatus Maven / Gradle / Ivy
package dev.soffa.foundation.model;
public interface ResponseStatus {
int CONTINUE = 100;
int SWITCHING_PROTOCOLS = 101;
int PROCESSING = 102;
int OK = 200;
int CREATED = 201;
int ACCEPTED = 202;
int NON_AUTHORITATIVE_INFORMATION = 203;
int NO_CONTENT = 204;
int RESET_CONTENT = 205;
int PARTIAL_CONTENT = 206;
int MULTI_STATUS = 207;
int ALREADY_REPORTED = 208;
int IM_USED = 226;
int MULTIPLE_CHOICES = 300;
int MOVED_PERMANENTLY = 301;
int FOUND = 302;
int SEE_OTHER = 303;
int NOT_MODIFIED = 304;
int USE_PROXY = 305;
int TEMPORARY_REDIRECT = 307;
int PERMANENT_REDIRECT = 308;
int BAD_REQUEST = 400;
int UNAUTHORIZED = 401;
int PAYMENT_REQUIRED = 402;
int FORBIDDEN = 403;
int NOT_FOUND = 404;
int METHOD_NOT_ALLOWED = 405;
int NOT_ACCEPTABLE = 406;
int PROXY_AUTHENTICATION_REQUIRED = 407;
int REQUEST_TIMEOUT = 408;
@Deprecated
int TIMEOUT = REQUEST_TIMEOUT;
int CONFLICT = 409;
int GONE = 410;
int LENGTH_REQUIRED = 411;
int PRECONDITION_FAILED = 412;
int PAYLOAD_TOO_LARGE = 413;
int REQUEST_UR_TOO_LONG = 414;
int UNSUPPORTED_MEDIA_TYPE = 415;
int REQUESTED_RANGE_NOT_SATISFIABLE = 416;
int EXPECTATION_FAILED = 417;
int IM_A_TEAPOT = 418;
int MISDIRECTED_REQUEST = 421;
int UNPROCESSABLE_ENTITY = 422;
int LOCKED = 423;
int FAILED_DEPENDENCY = 424;
int UPGRADE_REQUIRED = 426;
int PRECONDITION_REQUIRED = 428;
int TOO_MANY_REQUESTS = 429;
int REQUEST_HEADER_FIELDS_TOO_LARGE = 431;
int CONNECTION_CLOSED_WITHOUT_RESPONSE = 444;
int UNAVAILABLE_FOR_LEGAL_REASONS = 451;
int CLIENT_CLOSED_REQUEST = 499;
int SERVER_ERROR = 500;
int NOT_IMLEMENTED = 501;
int BAD_GATEWAY = 502;
int SERVICE_UNAVAILABLE = 503;
int GATEWAY_TIMEOUT = 504;
int HTTP_VERSION_NOT_SUPPORTED = 505;
int VARIANT_ALSO_NEGOTIATES = 506;
int INSUFFICIENT_STORAGE = 507;
int LOOP_DETECTED = 508;
int NOT_EXTENDED = 510;
int NETWORK_AUTHENTICATION_REQUIRED = 511;
int NETWORK_CONNECT_TIMEOUT_ERROR = 599;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy