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

com.kqinfo.universal.retry.constant.StatusEnum Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package com.kqinfo.universal.retry.constant;

/**
 * @author Zijian Liao
 * @since 1.12.0
 */
public enum StatusEnum {

    /**
     * 执行中
     */
    EXECUTING(1),
    /**
     * 成功
     */
    SUCCESS(2),
    /**
     * 失败
     */
    FAIL(3);

    private final Integer status;

    StatusEnum(Integer status){
        this.status = status;
    }

    public Integer status(){
        return this.status;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy