forked from bigbluebutton/bigbluebutton
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[refactor-msg-builder] - refactor of OfficeDocConversionProgress name
- Loading branch information
Showing
6 changed files
with
39 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58 changes: 29 additions & 29 deletions
58
...messages/OfficeDocConversionProgress.java → ...ation/messages/DocConversionProgress.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
package org.bigbluebutton.presentation.messages; | ||
|
||
public class OfficeDocConversionProgress implements IDocConversionMsg { | ||
public final String podId; | ||
public final String meetingId; | ||
public final String presId; | ||
public final String presInstance; | ||
public final String filename; | ||
public final String uploaderId; | ||
public final String authzToken; | ||
public final Boolean downloadable; | ||
public final Boolean removable; | ||
public final String key; | ||
|
||
public OfficeDocConversionProgress(String podId, String meetingId, String presId, String presInstance, | ||
String filename, String uploaderId, String authzToken, | ||
Boolean downloadable, Boolean removable, String key) { | ||
this.podId = podId; | ||
this.meetingId = meetingId; | ||
this.presId = presId; | ||
this.presInstance = presInstance; | ||
this.filename = filename; | ||
this.uploaderId = uploaderId; | ||
this.authzToken = authzToken; | ||
this.downloadable = downloadable; | ||
this.removable = removable; | ||
this.key = key; | ||
} | ||
} | ||
package org.bigbluebutton.presentation.messages; | ||
|
||
public class DocConversionProgress implements IDocConversionMsg { | ||
public final String podId; | ||
public final String meetingId; | ||
public final String presId; | ||
public final String presInstance; | ||
public final String filename; | ||
public final String uploaderId; | ||
public final String authzToken; | ||
public final Boolean downloadable; | ||
public final Boolean removable; | ||
public final String key; | ||
|
||
public DocConversionProgress(String podId, String meetingId, String presId, String presInstance, | ||
String filename, String uploaderId, String authzToken, | ||
Boolean downloadable, Boolean removable, String key) { | ||
this.podId = podId; | ||
this.meetingId = meetingId; | ||
this.presId = presId; | ||
this.presInstance = presInstance; | ||
this.filename = filename; | ||
this.uploaderId = uploaderId; | ||
this.authzToken = authzToken; | ||
this.downloadable = downloadable; | ||
this.removable = removable; | ||
this.key = key; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters