Skip to content
Snippets Groups Projects
Commit 6b20807f authored by Ghazi Triki's avatar Ghazi Triki
Browse files

Fix class import.

parent 5faf558a
No related branches found
No related tags found
No related merge requests found
...@@ -35,9 +35,6 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>. ...@@ -35,9 +35,6 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
</property> </property>
</bean> </bean>
<import resource="bbb-redis-messaging.xml"/>
<bean id="screenShareApplication" class="org.bigbluebutton.app.screenshare.ScreenShareApplication"> <bean id="screenShareApplication" class="org.bigbluebutton.app.screenshare.ScreenShareApplication">
<constructor-arg index="0" ref="messageBus"/> <constructor-arg index="0" ref="messageBus"/>
<constructor-arg index="1" value="${jnlpFile}"/> <constructor-arg index="1" value="${jnlpFile}"/>
...@@ -106,4 +103,6 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>. ...@@ -106,4 +103,6 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
</property> </property>
</bean> </bean>
<import resource="bbb-redis-messaging.xml"/>
</beans> </beans>
...@@ -12,7 +12,7 @@ import org.bigbluebutton.common2.msgs.UserBroadcastCamStopMsg; ...@@ -12,7 +12,7 @@ import org.bigbluebutton.common2.msgs.UserBroadcastCamStopMsg;
import org.bigbluebutton.common2.msgs.UserBroadcastCamStopMsgBody; import org.bigbluebutton.common2.msgs.UserBroadcastCamStopMsgBody;
import org.bigbluebutton.common2.msgs.ValidateConnAuthTokenSysMsg; import org.bigbluebutton.common2.msgs.ValidateConnAuthTokenSysMsg;
import org.bigbluebutton.common2.msgs.ValidateConnAuthTokenSysMsgBody; import org.bigbluebutton.common2.msgs.ValidateConnAuthTokenSysMsgBody;
import org.bigbluebutton.common2.redis.MessageSender; import org.bigbluebutton.common2.redis.pubsub.MessageSender;
import com.google.gson.Gson; import com.google.gson.Gson;
......
...@@ -63,7 +63,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>. ...@@ -63,7 +63,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
<property name="clientName" value="BbbRed5VideoSender" /> <property name="clientName" value="BbbRed5VideoSender" />
</bean> </bean>
<bean id="redisPublisher" class="org.bigbluebutton.red5.pubsub.MessagePublisher"> <bean id="redisPublisher" class="org.bigbluebutton.red5.pubsub.MessagePublisher">
<property name="messageSender" ref="redisSender"/> <property name="messageSender" ref="redisSender"/>
</bean> </bean>
......
...@@ -69,7 +69,6 @@ war.doLast { ...@@ -69,7 +69,6 @@ war.doLast {
ant.unzip(src: war.archivePath, dest: "$buildDir/sip") ant.unzip(src: war.archivePath, dest: "$buildDir/sip")
} }
task deploy() << { task deploy() << {
def red5AppsDir = '/usr/share/red5/webapps' def red5AppsDir = '/usr/share/red5/webapps'
def sipDir = new File("${red5AppsDir}/sip") def sipDir = new File("${red5AppsDir}/sip")
...@@ -80,4 +79,3 @@ task deploy() << { ...@@ -80,4 +79,3 @@ task deploy() << {
fileset(dir: "$buildDir/sip") fileset(dir: "$buildDir/sip")
} }
} }
...@@ -24,8 +24,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>. ...@@ -24,8 +24,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
xsi:schemaLocation="http://www.springframework.org/schema/beans xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util-2.0.xsd http://www.springframework.org/schema/util/spring-util-2.0.xsd">
">
<bean id="redisMessageDistributor" class="org.bigbluebutton.common2.redis.pubsub.MessageDistributor"> <bean id="redisMessageDistributor" class="org.bigbluebutton.common2.redis.pubsub.MessageDistributor">
<property name="messageHandler"> <ref local="redisMessageHandler"/> </property> <property name="messageHandler"> <ref local="redisMessageHandler"/> </property>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment