2009-06-03 06:35:22 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
2009-09-29 05:31:23 +08:00
|
|
|
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-2.5.xsd
|
2011-06-11 03:29:11 +08:00
|
|
|
">
|
2011-06-24 02:04:00 +08:00
|
|
|
|
|
|
|
<bean id="messagingService" class="org.bigbluebutton.api.messaging.RedisMessagingService">
|
|
|
|
<constructor-arg index="0" value="${redisHost}"/>
|
|
|
|
<constructor-arg index="1" value="${redisPort}"/>
|
|
|
|
<property name="redisPool" ref="redisPool"/>
|
2011-06-22 02:16:37 +08:00
|
|
|
</bean>
|
2011-06-09 09:35:24 +08:00
|
|
|
|
2011-06-24 02:04:00 +08:00
|
|
|
<bean id="redisPool" class="redis.clients.jedis.JedisPool">
|
|
|
|
<constructor-arg index="0" value="${redisHost}"/>
|
|
|
|
<constructor-arg index="1" value="${redisPort}"/>
|
|
|
|
</bean>
|
2011-07-24 04:53:34 +08:00
|
|
|
|
|
|
|
<bean id="expiredMeetingCleanupTimerTask" class="org.bigbluebutton.web.services.ExpiredMeetingCleanupTimerTask"/>
|
2011-06-24 02:04:00 +08:00
|
|
|
|
|
|
|
<bean id="meetingService" class="org.bigbluebutton.api.MeetingService">
|
|
|
|
<property name="defaultMeetingExpireDuration" value="${defaultMeetingExpireDuration}"/>
|
2011-07-23 23:13:29 +08:00
|
|
|
<property name="defaultMeetingCreateJoinDuration" value="${defaultMeetingCreateJoinDuration}"/>
|
2011-07-20 04:03:36 +08:00
|
|
|
<property name="removeMeetingWhenEnded" value="${removeMeetingWhenEnded}"/>
|
2011-07-24 04:53:34 +08:00
|
|
|
<property name="expiredMeetingCleanupTimerTask" ref="expiredMeetingCleanupTimerTask"/>
|
2011-06-16 22:46:59 +08:00
|
|
|
<property name="messagingService" ref="messagingService"/>
|
2011-06-24 02:04:00 +08:00
|
|
|
<property name="recordingService" ref="recordingService"/>
|
|
|
|
</bean>
|
|
|
|
|
|
|
|
<bean id="recordingServiceHelper" class="org.bigbluebutton.api.RecordingServiceHelperImp"/>
|
|
|
|
|
|
|
|
<bean id="recordingService" class="org.bigbluebutton.api.RecordingService" >
|
|
|
|
<property name="recordingStatusDir" value="${recordStatusDir}"/>
|
|
|
|
<property name="publishedDir" value="${publishedDir}"/>
|
|
|
|
<property name="unpublishedDir" value="${unpublishedDir}"/>
|
|
|
|
<property name="recordingServiceHelper" ref="recordingServiceHelper"/>
|
|
|
|
</bean>
|
|
|
|
|
|
|
|
<bean id="paramsProcessorUtil" class="org.bigbluebutton.api.ParamsProcessorUtil">
|
|
|
|
<property name="apiVersion" value="${apiVersion}"/>
|
|
|
|
<property name="serviceEnabled" value="${serviceEnabled}"/>
|
|
|
|
<property name="securitySalt" value="${securitySalt}"/>
|
|
|
|
<property name="defaultMaxUsers" value="${defaultMaxUsers}"/>
|
|
|
|
<property name="defaultWelcomeMessage" value="${defaultWelcomeMessage}"/>
|
|
|
|
<property name="defaultDialAccessNumber" value="${defaultDialAccessNumber}"/>
|
|
|
|
<property name="testVoiceBridge" value="${testVoiceBridge}"/>
|
|
|
|
<property name="testConferenceMock" value="${testConferenceMock}"/>
|
|
|
|
<property name="defaultLogoutUrl" value="${bigbluebutton.web.logoutURL}"/>
|
|
|
|
<property name="defaultServerUrl" value="${bigbluebutton.web.serverURL}"/>
|
|
|
|
<property name="defaultNumDigitsForTelVoice" value="${defaultNumDigitsForTelVoice}"/>
|
|
|
|
<property name="defaultClientUrl" value="${defaultClientUrl}"/>
|
|
|
|
<property name="defaultMeetingDuration" value="${defaultMeetingDuration}"/>
|
|
|
|
</bean>
|
|
|
|
|
|
|
|
<import resource="doc-conversion.xml" />
|
2009-04-02 00:53:45 +08:00
|
|
|
</beans>
|