2014-02-25 23:46:06 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
|
|
|
|
BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
|
|
|
|
|
|
|
|
Copyright (c) 2012 BigBlueButton Inc. and by respective authors (see below).
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU Lesser General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3.0 of the License, or (at your option) any later
|
|
|
|
version.
|
|
|
|
|
|
|
|
BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
|
|
PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
-->
|
|
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
2017-07-03 22:44:13 +08:00
|
|
|
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
|
2015-10-22 04:51:58 +08:00
|
|
|
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
|
|
|
|
http://www.springframework.org/schema/util
|
2017-07-03 22:44:13 +08:00
|
|
|
http://www.springframework.org/schema/util/spring-util-2.0.xsd">
|
2015-10-22 04:51:58 +08:00
|
|
|
|
2016-05-17 22:55:37 +08:00
|
|
|
|
2017-05-20 10:13:25 +08:00
|
|
|
<bean id="registeredUserCleanupTimerTask" class="org.bigbluebutton.web.services.RegisteredUserCleanupTimerTask"/>
|
|
|
|
|
|
|
|
<bean id="keepAliveService" class="org.bigbluebutton.web.services.KeepAliveService"
|
2017-07-03 22:44:13 +08:00
|
|
|
init-method="start" destroy-method="stop">
|
2017-05-20 10:13:25 +08:00
|
|
|
<property name="runEvery" value="${checkBBBServerEvery}"/>
|
2017-07-03 22:44:13 +08:00
|
|
|
<property name="gw" ref="bbbWebApiGWApp"/>
|
2017-05-20 10:13:25 +08:00
|
|
|
</bean>
|
2015-10-22 04:51:58 +08:00
|
|
|
|
|
|
|
<bean id="meetingService" class="org.bigbluebutton.api.MeetingService" init-method="start" destroy-method="stop">
|
2017-07-03 22:44:13 +08:00
|
|
|
<property name="redisStorageService" ref="redisStorageService"/>
|
2015-10-22 04:51:58 +08:00
|
|
|
<property name="recordingService" ref="recordingService"/>
|
2015-10-23 01:13:53 +08:00
|
|
|
<property name="presDownloadService" ref="presDownloadService"/>
|
|
|
|
<property name="paramsProcessorUtil" ref="paramsProcessorUtil"/>
|
2016-08-30 01:53:50 +08:00
|
|
|
<property name="stunTurnService" ref="stunTurnService"/>
|
|
|
|
<property name="registeredUserCleanupTimerTask" ref="registeredUserCleanupTimerTask"/>
|
2017-07-03 22:44:13 +08:00
|
|
|
<property name="gw" ref="bbbWebApiGWApp"/>
|
2018-06-21 22:38:19 +08:00
|
|
|
<property name="callbackUrlService" ref="callbackUrlService"/>
|
2017-05-20 10:13:25 +08:00
|
|
|
</bean>
|
|
|
|
|
|
|
|
<bean id="oldMessageReceivedGW" class="org.bigbluebutton.api2.bus.OldMessageReceivedGW">
|
|
|
|
<constructor-arg index="0" ref="redisMessageHandler"/>
|
|
|
|
</bean>
|
2014-02-25 23:46:06 +08:00
|
|
|
|
2018-06-21 22:38:19 +08:00
|
|
|
<bean id="callbackUrlService" class="org.bigbluebutton.web.services.callback.CallbackUrlService"
|
|
|
|
init-method="start" destroy-method="stop">
|
|
|
|
</bean>
|
|
|
|
|
2017-07-03 22:44:13 +08:00
|
|
|
<bean id="bbbWebApiGWApp" class="org.bigbluebutton.api2.BbbWebApiGWApp">
|
|
|
|
<constructor-arg index="0" ref="oldMessageReceivedGW"/>
|
2017-07-12 04:31:56 +08:00
|
|
|
<constructor-arg index="1" value="${screenshareRtmpServer}"/>
|
|
|
|
<constructor-arg index="2" value="${screenshareRtmpBroadcastApp}"/>
|
|
|
|
<constructor-arg index="3" value="${screenshareConfSuffix}"/>
|
2017-07-03 22:44:13 +08:00
|
|
|
</bean>
|
|
|
|
|
2017-09-04 01:52:18 +08:00
|
|
|
<bean id="recordingServiceHelper" class="org.bigbluebutton.api.util.RecordingMetadataReaderHelper">
|
|
|
|
<property name="recordingServiceGW" ref="recordingServiceGW"/>
|
|
|
|
</bean>
|
|
|
|
|
|
|
|
<bean id="recordingServiceGW" class="org.bigbluebutton.api2.util.RecMetaXmlHelper">
|
|
|
|
</bean>
|
2017-07-03 22:44:13 +08:00
|
|
|
|
|
|
|
<bean id="presDownloadService" class="org.bigbluebutton.presentation.PresentationUrlDownloadService"
|
|
|
|
destroy-method="stop">
|
|
|
|
<property name="presentationDir" value="${presentationDir}"/>
|
|
|
|
<property name="presentationBaseURL" value="${presentationBaseURL}"/>
|
|
|
|
<property name="pageExtractor" ref="pageExtractor"/>
|
|
|
|
<property name="documentConversionService" ref="documentConversionService"/>
|
|
|
|
<property name="blankPresentation" value="${BLANK_PRESENTATION}"/>
|
|
|
|
</bean>
|
|
|
|
|
|
|
|
<bean id="recordingService" class="org.bigbluebutton.api.RecordingService">
|
|
|
|
<property name="recordingStatusDir" value="${recordStatusDir}"/>
|
|
|
|
<property name="publishedDir" value="${publishedDir}"/>
|
|
|
|
<property name="unpublishedDir" value="${unpublishedDir}"/>
|
2018-05-29 22:19:19 +08:00
|
|
|
<property name="captionsDir" value="${captionsDir}"/>
|
2017-07-03 22:44:13 +08:00
|
|
|
<property name="recordingServiceHelper" ref="recordingServiceHelper"/>
|
2018-06-08 03:13:00 +08:00
|
|
|
<property name="presentationBaseDir" value="${presentationDir}"/>
|
2017-07-03 22:44:13 +08:00
|
|
|
</bean>
|
|
|
|
|
|
|
|
<bean id="configServiceHelper" class="org.bigbluebutton.api.ClientConfigServiceHelperImp"/>
|
|
|
|
|
|
|
|
<bean id="configService" class="org.bigbluebutton.api.ClientConfigService" init-method="init">
|
|
|
|
<property name="configDir" value="${configDir}"/>
|
|
|
|
<property name="clientConfigServiceHelper" ref="configServiceHelper"/>
|
|
|
|
</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="defaultWelcomeMessageFooter" value="${defaultWelcomeMessageFooter}"/>
|
|
|
|
<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}"/>
|
2017-09-26 05:12:54 +08:00
|
|
|
<property name="defaultGuestWaitURL" value="${defaultGuestWaitURL}"/>
|
2017-12-01 04:19:03 +08:00
|
|
|
<property name="html5ClientUrl" value="${html5ClientUrl}"/>
|
2019-01-09 03:54:08 +08:00
|
|
|
<property name="allowRequestsWithoutSession" value="${allowRequestsWithoutSession}"/>
|
2017-12-01 04:19:03 +08:00
|
|
|
<property name="moderatorsJoinViaHTML5Client" value="${moderatorsJoinViaHTML5Client}"/>
|
|
|
|
<property name="attendeesJoinViaHTML5Client" value="${attendeesJoinViaHTML5Client}"/>
|
2017-07-03 22:44:13 +08:00
|
|
|
<property name="defaultMeetingDuration" value="${defaultMeetingDuration}"/>
|
|
|
|
<property name="disableRecordingDefault" value="${disableRecordingDefault}"/>
|
|
|
|
<property name="autoStartRecording" value="${autoStartRecording}"/>
|
|
|
|
<property name="allowStartStopRecording" value="${allowStartStopRecording}"/>
|
|
|
|
<property name="webcamsOnlyForModerator" value="${webcamsOnlyForModerator}"/>
|
|
|
|
<property name="defaultAvatarURL" value="${defaultAvatarURL}"/>
|
|
|
|
<property name="defaultConfigURL" value="${defaultConfigURL}"/>
|
|
|
|
<property name="defaultGuestPolicy" value="${defaultGuestPolicy}"/>
|
2017-07-16 00:30:02 +08:00
|
|
|
<property name="maxInactivityTimeoutMinutes" value="${maxInactivityTimeoutMinutes}"/>
|
|
|
|
<property name="warnMinutesBeforeMax" value="${warnMinutesBeforeMax}"/>
|
2017-07-16 10:10:04 +08:00
|
|
|
<property name="meetingExpireIfNoUserJoinedInMinutes" value="${meetingExpireIfNoUserJoinedInMinutes}"/>
|
2017-07-16 23:11:48 +08:00
|
|
|
<property name="meetingExpireWhenLastUserLeftInMinutes" value="${meetingExpireWhenLastUserLeftInMinutes}"/>
|
2018-07-27 22:02:04 +08:00
|
|
|
<property name="userInactivityInspectTimerInMinutes" value="${userInactivityInspectTimerInMinutes}"/>
|
|
|
|
<property name="userInactivityThresholdInMinutes" value="${userInactivityThresholdInMinutes}"/>
|
2018-07-26 04:14:29 +08:00
|
|
|
<property name="userActivitySignResponseDelayInMinutes" value="${userActivitySignResponseDelayInMinutes}"/>
|
2017-11-28 06:03:50 +08:00
|
|
|
<property name="maxPresentationFileUpload" value="${maxFileSizeUpload}"/>
|
2017-12-16 06:59:00 +08:00
|
|
|
<property name="clientLogoutTimerInMinutes" value="${clientLogoutTimerInMinutes}"/>
|
2017-12-22 02:40:44 +08:00
|
|
|
<property name="muteOnStart" value="${muteOnStart}"/>
|
2017-07-03 22:44:13 +08:00
|
|
|
</bean>
|
|
|
|
|
|
|
|
<import resource="doc-conversion.xml"/>
|
2018-11-22 05:30:41 +08:00
|
|
|
<import resource="bbb-redis-messaging.xml"/>
|
2017-07-03 22:44:13 +08:00
|
|
|
<import resource="turn-stun-servers.xml"/>
|
2016-05-16 23:35:36 +08:00
|
|
|
</beans>
|