forked from sakaiproject/sakai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util-components.xml
84 lines (72 loc) · 3.12 KB
/
util-components.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="org.sakaiproject.id.api.IdManager"
class="org.sakaiproject.id.impl.UuidV4IdComponent"
init-method="init"
destroy-method="destroy"/>
<bean id="org.sakaiproject.thread_local.api.ThreadLocalManager"
class="org.sakaiproject.thread_local.impl.ThreadLocalComponent"
init-method="init"
destroy-method="destroy"/>
<bean id="org.sakaiproject.log.api.LogConfigurationManager"
class="org.sakaiproject.log.impl.Log4jConfigurationManager"
init-method="init"
destroy-method="destroy">
<lookup-method name="serverConfigurationService" bean="org.sakaiproject.component.api.ServerConfigurationService" />
<lookup-method name="securityService" bean="org.sakaiproject.authz.api.SecurityService" />
<property name="ignore">
<map>
<entry>
<!-- from this logger -->
<key><value>org.apache.myfaces.webapp.webxml.WebXmlParser</value></key>
<set>
<!-- messages starting with these strings will be ignored -->
<value>Ignored element 'init-param' as child of 'servlet'.</value>
</set>
</entry>
<entry>
<key><value>org.apache.commons.digester.Digester</value></key>
<set>
<value>[NavigationRuleRule]{faces-config/navigation-rule} Merge</value>
<value>[ConverterRule]{faces-config/converter} Merge</value>
</set>
</entry>
<entry>
<key><value>net.sf.ehcache.hibernate.AbstractEhcacheRegionFactory</value></key>
<set>
<value>Couldn't find a specific ehcache configuration for cache named</value>
</set>
</entry>
<entry>
<key><value>net.sf.ehcache.config.Configurator</value></key>
<set>
<value>No configuration found. Configuring ehcache from</value>
</set>
</entry>
<entry>
<key><value>org.apache.myfaces.util.LocaleUtils</value></key>
<set>
<value>Locale name null or empty, ignoring</value>
</set>
</entry>
</map>
</property>
</bean>
<bean id="org.sakaiproject.util.api.FormattedText"
class="org.sakaiproject.util.impl.FormattedTextImpl"
init-method="init">
<property name="serverConfigurationService" ref="org.sakaiproject.component.api.ServerConfigurationService"/>
<property name="sessionManager" ref="org.sakaiproject.tool.api.SessionManager"/>
</bean>
<bean id="org.sakaiproject.util.api.LinkMigrationHelper"
class="org.sakaiproject.util.impl.LinkMigrationHelperImpl"
init-method="init">
<property name="serverConfigurationService" ref="org.sakaiproject.component.api.ServerConfigurationService"/>
</bean>
<bean id="org.sakaiproject.util.api.PasswordFactory"
class="org.sakaiproject.util.impl.PasswordFactoryImpl">
</bean>
<bean id="org.sakaiproject.util.api.EncryptionUtilityService" class="org.sakaiproject.util.impl.EncryptionUtilityServiceImpl" init-method="init" />
</beans>