<?xml version="1.0" encoding="UTF-8"?>
<!-- TODO : add util schema -->
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
	
	<bean id="configurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
		<property name="locations">
			<list>
         		<value>userConfigurer.txt</value>
			</list>
		</property>
	</bean>
	 
	<bean id="com.sds.emp.user.services.UserServiceWithIoCExtended"
		class="com.sds.emp.user.services.impl.UserServiceImplWithIoCExtended">
		<property name="userDAO" ref="userDAO" />
		<property name="userCompany" value="${user.company}"></property>
	</bean>
	
	<bean id="userDAO" class="com.sds.emp.user.services.impl.UserDAOWithIoCExtended"/>
		
    <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
         <property name="basenames">
            <list>  
               	<value>
               		userMessages
               	</value>
            </list>
        </property>
    </bean>
	
	<bean id="userEventListener" class="com.sds.emp.user.services.impl.UserEventListener"/>

</beans>



