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"); } }