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

org.shoulder.code.consts.ValidateCodeConsts Maven / Gradle / Ivy

The newest version!
package org.shoulder.code.consts;

import org.shoulder.security.SecurityConst;

/**
 * 验证码相关的常量
 * @author lym
 * */
public interface ValidateCodeConsts {

    String CONFIG_PREFIX = SecurityConst.CONFIG_PREFIX + ".validate-code";
    /** 获取验证码的 url 路径 */
    String VALIDATE_CODE_URL = "/code";

    /** 获取验证码请求中,用于区分验证码类型的参数名称 */
    String VALIDATE_CODE_TYPE_PARAM_NAME = "type";


    // --------------- 默认的 -----------------

    /** 图形验证码 */
    String IMAGE = "imageCode";

    /** 短信验证码 */
    String SMS = "smsCode";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy