保誠-保戶業務員媒合平台
wayne
2021-11-23 a8b21cd919b76a548b77ef0ec2d8aee28c8e6b0e
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() {}
}