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

com.diboot.core.vo.Status Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2015-2020, www.dibo.ltd ([email protected]).
 * 

* Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at *

* https://www.apache.org/licenses/LICENSE-2.0 *

* Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package com.diboot.core.vo; import com.diboot.core.util.I18n; /** * 状态码定义 * @author [email protected] * @version v2.0 * @date 2019/01/01 */ public enum Status { /** * 请求处理成功 */ OK(0, "status.ok.message"), /** * 部分成功(一般用于批量处理场景,只处理筛选后的合法数据) */ WARN_PARTIAL_SUCCESS(1001, "status.warn_partial_success.message"), /** * 有潜在的性能问题 */ WARN_PERFORMANCE_ISSUE(1002, "status.warn_performance_issue.message"), /** * 传入参数不对 */ FAIL_INVALID_PARAM(4000, "status.fail_invalid_param.message"), /** * Token无效或已过期 */ FAIL_INVALID_TOKEN(4001, "status.fail_invalid_token.message"), /** * 没有权限执行该操作 */ FAIL_NO_PERMISSION(4003, "status.fail_no_permission.message"), /** * 请求资源不存在 */ FAIL_NOT_FOUND(4004, "status.fail_not_found.message"), /** * 数据校验不通过 */ FAIL_VALIDATION(4005, "status.fail_validation.message"), /** * 操作执行失败 */ FAIL_OPERATION(4006, "status.fail_operation.message"), /** * 请求连接超时 */ FAIL_REQUEST_TIMEOUT(4008, "status.fail_request_timeout.message"), /** * 认证不通过(用户名密码错误等认证失败场景) */ FAIL_AUTHENTICATION(4009, "status.fail_authentication.message"), /** * 租户无效 */ FAIL_INVALID_TENANT(4011,"status.fail_invalid_tenant.message"), /** * 账号无效 */ FAIL_INVALID_ACCOUNT(4012,"status.fail_invalid_account.message"), /** * 系统异常 */ FAIL_EXCEPTION(5000, "status.fail_exception.message"), /** * 服务不可用 */ FAIL_SERVICE_UNAVAILABLE(5003, "status.fail_service_unavailable.message"),; private int code; private String label; Status(int code, String label){ this.code = code; this.label = label; } public int code(){ return this.code; } public String label(){ return I18n.message(this.label); } public static int getCode(String value){ for(Status eu : Status.values()){ if(eu.name().equals(value)){ return eu.code(); } } return 0; } public static String getLabel(String value){ for(Status eu : Status.values()){ if(eu.name().equals(value)){ return eu.label(); } } return null; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy