Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
1 contributor

Users who have contributed to this file

37 lines (32 sloc) 1.33 KB
<?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:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans classpath:/schema/spring-beans-2.5.xsd
http://www.springframework.org/schema/util classpath:/schema/spring-util-2.5.xsd">
<bean
id="shibboleth.VelocityEngine"
class="org.springframework.ui.velocity.VelocityEngineFactoryBean">
<property name="velocityProperties">
<props>
<prop key="resource.loader">classpath, string</prop>
<prop key="classpath.resource.loader.class">
org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
</prop>
<prop key="string.resource.loader.class">
edu.internet2.middleware.shibboleth.common.util.StringResourceLoader
</prop>
</props>
</property>
</bean>
<bean
id="shibboleth.TemplateEngine"
class="edu.internet2.middleware.shibboleth.common.attribute.resolver.provider.dataConnector.TemplateEngine">
<constructor-arg ref="shibboleth.VelocityEngine" />
</bean>
<!-- workaround logback requirement -->
<bean
id="shibboleth.LogbackLogging"
class="edu.internet2.middleware.psp.util.EmptyBean" />
</beans>