Add explicit data type for messages

This commit is contained in:
perroned 2016-02-04 11:10:03 -08:00
parent e3bc716ddf
commit b4649b41a2

View File

@ -1,13 +1,13 @@
/**
* 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.
@ -22,19 +22,19 @@ package org.bigbluebutton.modules.deskshare.events
public class RecordingStatusEvent extends Event
{
public static const DESKSHARE_RECORD_EVENT = "DESKSHARE_RECORD_EVENT";
public static const RECORD_STOPPED_EVENT = "DESKSHARE_RECORD_STOPPED_EVENT";
public static const RECORD_STARTED_EVENT = "DESKSHARE_RECORD_STARTED_EVENT";
public static const RECORD_UPDATED_EVENT = "DESKSHARE_RECORD_UPDATED_EVENT";
public static const RECORD_ERROR_EVENT = "DESKSHARE_RECORD_ERROR_EVENT";
public static const DESKSHARE_RECORD_EVENT:String = "DESKSHARE_RECORD_EVENT";
public static const RECORD_STOPPED_EVENT:String = "DESKSHARE_RECORD_STOPPED_EVENT";
public static const RECORD_STARTED_EVENT:String = "DESKSHARE_RECORD_STARTED_EVENT";
public static const RECORD_UPDATED_EVENT:String = "DESKSHARE_RECORD_UPDATED_EVENT";
public static const RECORD_ERROR_EVENT:String = "DESKSHARE_RECORD_ERROR_EVENT";
public var status:String;
public function RecordingStatusEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false)
{
super(type, bubbles, cancelable);
}
}
}
}