Provides namespace support for scanning for Fujion component annotations. For example,
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ffc="http://www.fujion.org/schema/component"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.fujion.org/schema/component
http://www.fujion.org/schema/extensions/component-extensions.xsd">
<!-- Scan by package -->
<ffc:component-scan package="org.acme.foo" />
<!-- Scan by class -->
<ffc:component-scan class="org.acme.foo.Bar" />
</beans>