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

core.domain.enums.ApiValidationStatusCode Maven / Gradle / Ivy

Go to download

Epikos is a Rest Serivce framework which can be extend to develop any other Rest API/Services. For more detail please checkout github (https://github.com/epikosrest/epikos.git)

There is a newer version: 0.0.7.8.1
Show newest version
package core.domain.enums;

import core.error.ApiValidationStatus;
import lombok.Getter;

/**
 * Created by nitina on 7/14/17.
 */
@Getter
public enum ApiValidationStatusCode {
    InvalidConsume(1),InvalidContentType(2),InvalidMethod(3),InvalidPath(4),InvalidPathParam(5),InvalidProduce(6),InvalidStatus(7),Unknown(0),Valid(999);

    int code;

    ApiValidationStatusCode(int code){
        this.code = code;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy