source: vanHelsing/trunk/gui/WebContent/WEB-INF/faces-config.xml@ 832

Last change on this file since 832 was 832, checked in by tobias, on Mar 5, 2010 at 6:03:21 PM

views and data objects of the resource types added.
basic logging with log4j for the beanUtil class.
Configuration and JobSchedule class renamed.

File size: 1.2 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2
3<faces-config
4 xmlns="http://java.sun.com/xml/ns/javaee"
5 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd"
7 version="1.2">
8 <managed-bean>
9 <description>backend bean of the configuration tree view</description>
10 <managed-bean-name>configurationBean</managed-bean-name>
11 <managed-bean-class>de.dass_it.vanhelsing.gui.ConfigurationBean</managed-bean-class>
12 <managed-bean-scope>session</managed-bean-scope>
13 </managed-bean>
14 <managed-bean>
15 <description>backend bean of the schedule and job tree view</description>
16 <managed-bean-name>jobScheduleBean</managed-bean-name>
17 <managed-bean-class>de.dass_it.vanhelsing.gui.JobScheduleBean</managed-bean-class>
18 <managed-bean-scope>session</managed-bean-scope>
19 </managed-bean>
20 <managed-bean>
21 <description>backend bean of the topology (server) view</description>
22 <managed-bean-name>topologyBean</managed-bean-name>
23 <managed-bean-class>de.dass_it.vanhelsing.gui.TopologyBean</managed-bean-class>
24 <managed-bean-scope>session</managed-bean-scope>
25 </managed-bean>
26
27</faces-config>
Note: See TracBrowser for help on using the repository browser.