![JAR search and dependency download from the Maven repository](/logo.png)
com.dahuatech.icc.oauth.model.v202010.oSDK.OauthParamConstant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-oauth Show documentation
Show all versions of java-sdk-oauth Show documentation
Dahua ICC Open API SDK for Java
package com.dahuatech.icc.oauth.model.v202010.oSDK;
/**
* program:java-sdk
*
* Author: 312013
* Date:2022-07-19 09:33
* Description: oauth常量
*/
public enum OauthParamConstant {
//保活
BRM_KEEP_ALIVE("873001","参数错误"),
//认证授权
OAUTH_TOKEN_PARAM_ERROR("873002","参数错误"),
//密码认证授权
OAUTH_PWD_AUTH_PARAM_ERROR("873003", "参数错误"),
//密码修改
OAUTH_PASSWORD_CHANGE_PARAM_ERROR("873004", "参数错误"),
//验证密码
OAUTH_PWD_CHECK_PARAM_ERROR("873005", "参数错误"),
//全局错误
SYSTEME_RROR("99999999", "系统异常"),
//全局成功
SYSTEME_SUCESS( "000000", "处理成功");
;
private String code;
private String errMsg;
OauthParamConstant(String code, String errMsg){
this.code = code;
this.errMsg = errMsg;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getErrMsg() {
return errMsg;
}
public void setErrMsg(String errMsg) {
this.errMsg = errMsg;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy