blob: b2a908e235343702992460632b0b776930de2245 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<bean id="applicationContext"
class="org.apache.axis2.extensions.spring.receivers.ApplicationContextHolder" />
<bean id="weatherSpringService" class="sample.spring.service.WeatherSpringService">
<property name="weather" ref="weatherBean"/>
</bean>
<bean id="weatherBean" class="sample.spring.bean.Weather">
<property name="temperature" value="89.9"/>
<property name="forecast" value="Sunny"/>
<property name="rain" value="false"/>
<property name="howMuchRain" value="0.2"/>
</bean>
</beans>