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";
|
|
public static final String SPRING_PROFILE_POLLEX_DEVELOPMENT = "pollex";
|
|
private Constants() {}
|
}
|