tj
2025-06-05 2d549a04870d1315868a7cf19952b64e8071e711
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.cloudroam.common.constant;
 
/**
 * 身份认证常量
 *
 * @author 
 */
public class IdentityConstant {
 
    /**
     * 表示通过用户名和密码来进行身份认证
     */
    public static final String USERNAME_PASSWORD_IDENTITY = "USERNAME_PASSWORD";
 
    private IdentityConstant() {
        throw new IllegalStateException("Utility class");
    }
 
}