If you contribute a patch, sure, we'll add it.
However, in CVS (and from 0.8.0) there's a far more powerful FilterChainProxy class. You'll thus only have one FilterToBeanProxy - which loads the FilterChainProxy - and it takes care of the rest.
Here's an example of the syntax this new filter offers:
Code:
<bean id="filterChainProxy" class="net.sf.acegisecurity.util.FilterChainProxy">
<property name="filterInvocationDefinitionSource">
<value>
CONVERT_URL_TO_LOWERCASE_BEFORE_COMPARISON
PATTERN_TYPE_APACHE_ANT
/webServices/**=basicProcessingFilter,httpSessionIntegrationFilter,securityEnforcementFilter
/**=authenticationProcessingFilter,httpSessionIntegrationFilter,securityEnforcementFilter
</value>
</property>
</bean>