Author: sebawagner
Date: Sun Feb 5 18:10:07 2012
New Revision: 1240773
URL: http://svn.apache.org/viewvc?rev=1240773&view=rev
Log:
OPENMEETINGS-47 Add some documentation to new session variable "isAVClient"
Modified:
incubator/openmeetings/trunk/singlewebapp/src/app/org/openmeetings/app/persistence/beans/recording/RoomClient.java
Modified:
incubator/openmeetings/trunk/singlewebapp/src/app/org/openmeetings/app/persistence/beans/recording/RoomClient.java
URL:
http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/src/app/org/openmeetings/app/persistence/beans/recording/RoomClient.java?rev=1240773&r1=1240772&r2=1240773&view=diff
==============================================================================
---
incubator/openmeetings/trunk/singlewebapp/src/app/org/openmeetings/app/persistence/beans/recording/RoomClient.java
(original)
+++
incubator/openmeetings/trunk/singlewebapp/src/app/org/openmeetings/app/persistence/beans/recording/RoomClient.java
Sun Feb 5 18:10:07 2012
@@ -114,11 +114,11 @@ public class RoomClient implements Seria
private Boolean isScreenClient = false;
/**
* If true this client is only used to stream audio/video events,
- * he should not receive any sync events / push messages
- *
- * null means not initialized yet
- * true the user is an audio/video connection
- * false the user is a regular user with full session object
+ * he should not receive any sync events / push messages <br/>
+ * <br/>
+ * null means not initialized yet<br/>
+ * true the user is an audio/video connection<br/>
+ * false the user is a regular user with full session object<br/>
*
*/
@Column(name="isAVClient")
@@ -667,6 +667,10 @@ public class RoomClient implements Seria
this.allowRecording = allowRecording;
}
+ /**
+ * @see RoomClient#isAVClient
+ * @return
+ */
public Boolean getIsAVClient() {
return isAVClient;
}