IBM WebSphere Multichannel Bank Transformation Toolkit, Version 7.1

Configuration

In the configuration file, the node actionmappings contains the mappings of the actiontype, which is a parameter of the web page request. The navigationtree defines the structure of the navigation tree and the corresponding web page.

Following is the content of the configuration file:

<?xml version="1.0" encoding="UTF-8"?>
<runtimemonitor-config>
	<actiontypemappings>
		<mapping>
			<actiontype>ContextTreeAction</actiontype>
			<target>com.ibm.btt.runtimemonitor.ContextTreeAction</target>
		</mapping>
		<mapping>
			<actiontype>SessionTableAction</actiontype>
			<target>com.ibm.btt.runtimemonitor.SessionTableAction</target>
		</mapping>
		<mapping>
			<actiontype>SystemAction</actiontype>
			<target>com.ibm.btt.runtimemonitor.SystemAction</target>
		</mapping>
		<mapping>
			<actiontype>NavigationTreeAction</actiontype>
			<target>com.ibm.btt.runtimemonitor.NavigationTreeAction</target>
		</mapping>
	</actiontypemappings>
	<navigationtree>
		<treenodes>
			<treenode name="Runtime">
				<treenode name="Context" target="ctxtree.html"></treenode>
				<treenode name="Session Table" target="sessiontable.html"></treenode>
			</treenode>
			<treenode name="System" target="systeminfo.html"></treenode>
		</treenodes>
	</navigationtree>
</runtimemonitor-config>


Feedback