<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">

	<bean id="inviteController" class="com.allofrss.controllers.action.InviteActionController">
		<property name="commandName" value="invite"/>
        <property name="commandClass" value="com.allofrss.beans.form.InviteFormBean"/>
        <property name="formView" value="invite"/>
        <property name="successView" value="invite"/>
        <property name="validator">
            <bean class="com.allofrss.validators.InviteFormValidator"/>
        </property>
        
        <property name="subscribersService" ref="inviteSubscribersService"/>
    </bean>

	<bean id="aboutController" 		class="com.allofrss.controllers.lookup.AboutController"/>
    
</beans>