<?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:config="http://www.anyframejava.org/schema/service"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd 
	http://www.anyframejava.org/schema/service http://www.anyframejava.org/schema/service/anyframe-core-service-2.0.xsd">
	<bean name="propertiesService" class="anyframe.core.properties.impl.PropertiesServiceImpl">
		<config:configuration>      		
	      <fileName>classpath:/services/properties/testcase-resource.properties</fileName>
	      <properties>
	         <element key="AAAA" value="1234"/>
	         <element key="bbbb" value="4567"/>
	         <element key="cccc" value="5678"/>
	         <element key="PAGE_SIZE" value="10"/>
	         <element key="PAGE_UNIT" value="10"/>
	      </properties>				
		</config:configuration>					
	</bean>		
</beans>	

