view _test/Resources/app.xml @ 59:0f3e369553bd

Rewritten property implementation (probably become slower but more flexible) Configuration infrastructure in progress (in the aspect of the lazy activation) Initial concept for the code generator
author wizard
date Tue, 09 Mar 2010 02:50:45 +0300
parents a35b60b16a99
children b0c068da93ac
line wrap: on
line source

<?xml version="1.0" encoding="UTF-8"?>
<Application id='app' type="Test::Config::Application">
	<name>Sample application</name>
	<options type="HASH">
		<One>value one</One>
		<Two>value two</Two>
	</options>
	<dataSource type='IMPL::Config::Activator' id='ds'>
		<type>Test::Config::DataSource</type>
		<parameters type='HASH'>
			<db>data</db>
			<user>nobody</user>
		</parameters>
	</dataSource>
	<securityMod type='IMPL::Config::Activator'>
		<type>Test::Config::Security</type>
		<parameters type='HASH'>
			<ds type='IMPL::Config::Link'>
				<target ref='ds'/>
			</ds>
		</paremeters>
	</securityMod>
</Application>