All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jizcode.netty.contract.RequestStatus Maven / Gradle / Ivy

There is a newer version: 1.0.14-BETA
Show newest version
package jizcode.netty.contract;

public enum RequestStatus{
    OK(200),
    NotFound(404),
    Timeout(408);

    private final int code;
    private RequestStatus(int code) {
        this.code = code;
    }

    public int getCode() {
        return this.code;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy