Description
There is an validator for username in
org.apache.jetspeed.security.spi.impl.ldap.AbstractLdapDao.validateUid(String)
I need to login with username: name.surname but in the method there is a pattern for validating which contains dot.
String pattern = ".\\(.|.\\[.|.\\{.|.\\\\.|.\\^.|.\\$.|.\\|.|.\\).|.\\?.|.\\*.|.\\+.|.
..";
It is possible to externalize this string to a configuration file?