保誠-保戶業務員媒合平台
wayne
2021-12-29 bc6c7eb6d2c2bff68f2decfbd3a800140b79dd88
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.pollex.pam.config;
 
/**
 * Application constants.
 */
public final class Constants {
 
    // Regex for acceptable logins
    public static final String LOGIN_REGEX = "^(?>[a-zA-Z0-9!$&*+=?^_`{|}~.-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*)|(?>[_.@A-Za-z0-9-]+)$";
 
    public static final String SYSTEM = "system";
    public static final String DEFAULT_LANGUAGE = "zh-tw";
 
    private Constants() {}
}