_log.warn( "There's a sessionAttributesFilter configured ('" + _sessionAttributeFilter + "')," +
" all other session attributes will be lost after the request due to non-sticky configuration!" );
}
Pattern uriPattern = null;
LockingMode lockingMode = null;
if ( _lockingMode != null ) {
if ( _lockingMode.startsWith( "uriPattern:" ) ) {
lockingMode = LockingMode.URI_PATTERN;
uriPattern = Pattern.compile( _lockingMode.substring( "uriPattern:".length() ) );
}