Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
fairblue
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hosting
chat
fairblue
Commits
aedeb705
Commit
aedeb705
authored
9 years ago
by
Ghazi Triki
Browse files
Options
Downloads
Patches
Plain Diff
Added missing class TransferUsetToMeetingCommand.java
parent
9b66cf30
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
akka-bbb-fsesl/src/main/java/org/bigbluebutton/freeswitch/voice/freeswitch/actions/TransferUsetToMeetingCommand.java
+49
-0
49 additions, 0 deletions
...oice/freeswitch/actions/TransferUsetToMeetingCommand.java
with
49 additions
and
0 deletions
akka-bbb-fsesl/src/main/java/org/bigbluebutton/freeswitch/voice/freeswitch/actions/TransferUsetToMeetingCommand.java
0 → 100644
+
49
−
0
View file @
aedeb705
/**
* 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/>.
*
*/
package
org.bigbluebutton.freeswitch.voice.freeswitch.actions
;
public
class
TransferUsetToMeetingCommand
extends
FreeswitchCommand
{
private
final
String
targetRoom
;
private
final
String
participant
;
private
final
Boolean
forward
;
public
TransferUsetToMeetingCommand
(
String
room
,
String
targetRoom
,
String
participant
,
Boolean
forward
,
String
requesterId
)
{
super
(
room
,
requesterId
);
this
.
targetRoom
=
targetRoom
;
this
.
participant
=
participant
;
this
.
forward
=
forward
;
}
@Override
public
String
getCommandArgs
()
{
String
action
=
""
;
if
(
forward
)
action
=
"conference"
+
SPACE
+
room
+
SPACE
+
"transfer"
+
SPACE
+
targetRoom
;
else
{
action
=
"conference"
+
SPACE
+
targetRoom
+
SPACE
+
"transfer"
+
SPACE
+
room
;
}
return
action
+
SPACE
+
participant
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment