You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by se...@apache.org on 2013/08/11 04:09:10 UTC

svn commit: r1512847 - in /openmeetings/branches/OPENMEETINGS-745: WebContent/src/modules/admin/connections/ WebContent/src/modules/admin/library.lzx src/org/apache/openmeetings/remote/ConferenceService.java

Author: sebawagner
Date: Sun Aug 11 02:09:09 2013
New Revision: 1512847

URL: http://svn.apache.org/r1512847
Log:
OPENMEETINGS-758 Remove connection admin Flash UI and Server Side related API

Removed:
    openmeetings/branches/OPENMEETINGS-745/WebContent/src/modules/admin/connections/
Modified:
    openmeetings/branches/OPENMEETINGS-745/WebContent/src/modules/admin/library.lzx
    openmeetings/branches/OPENMEETINGS-745/src/org/apache/openmeetings/remote/ConferenceService.java

Modified: openmeetings/branches/OPENMEETINGS-745/WebContent/src/modules/admin/library.lzx
URL: http://svn.apache.org/viewvc/openmeetings/branches/OPENMEETINGS-745/WebContent/src/modules/admin/library.lzx?rev=1512847&r1=1512846&r2=1512847&view=diff
==============================================================================
--- openmeetings/branches/OPENMEETINGS-745/WebContent/src/modules/admin/library.lzx (original)
+++ openmeetings/branches/OPENMEETINGS-745/WebContent/src/modules/admin/library.lzx Sun Aug 11 02:09:09 2013
@@ -26,12 +26,9 @@
 	<include href="useradmin/" />
 	<include href="orgadmin/" />
 	<include href="roomadmin/" />
-	<include href="confadmin/" />
 	<include href="languageseditor/" />
 	<include href="ldap/" />
 	<!-- -->
-	<include href="backup/" />
-    <include href="connections/" />
 	<include href="servers/" />
 
 </library>

Modified: openmeetings/branches/OPENMEETINGS-745/src/org/apache/openmeetings/remote/ConferenceService.java
URL: http://svn.apache.org/viewvc/openmeetings/branches/OPENMEETINGS-745/src/org/apache/openmeetings/remote/ConferenceService.java?rev=1512847&r1=1512846&r2=1512847&view=diff
==============================================================================
--- openmeetings/branches/OPENMEETINGS-745/src/org/apache/openmeetings/remote/ConferenceService.java (original)
+++ openmeetings/branches/OPENMEETINGS-745/src/org/apache/openmeetings/remote/ConferenceService.java Sun Aug 11 02:09:09 2013
@@ -688,50 +688,6 @@ public class ConferenceService {
 		return sessionManager.getClientListByRoom(room_id);
 	}
 
-	/**
-	 * invoked in the admin interface to show the connections currently open
-	 * 
-	 * @param SID
-	 * @param start
-	 * @param max
-	 * @param orderby
-	 * @param asc
-	 * @return - list of the connections currently open
-	 */
-	public SearchResult<Client> getRoomClientsMap(String SID, int start, int max,
-			String orderby, boolean asc) {
-		try {
-			Long users_id = sessiondataDao.checkSession(SID);
-			Long user_level = userManager.getUserLevelByID(users_id);
-			if (authLevelUtil.checkAdminLevel(user_level)) {
-				return this.sessionManager.getListByStartAndMax(start, max,
-						orderby, asc);
-			}
-		} catch (Exception err) {
-			log.error("[getRoomClientsMap]", err);
-		}
-		return null;
-	}
-	
-	/**
-	 * Get some statistics about the current sessions handled by this instance
-	 * 
-	 * @param SID
-	 * @return - session statistics as String
-	 */
-	public String getSessionStatistics(String SID) {
-		try {
-			Long users_id = sessiondataDao.checkSession(SID);
-			Long user_level = userManager.getUserLevelByID(users_id);
-			if (authLevelUtil.checkAdminLevel(user_level)) {
-				return this.sessionManager.getSessionStatistics();
-			}
-		} catch (Exception err) {
-			log.error("[getRoomClientsMap]", err);
-		}
-		return null;
-	}
-
 	public List<Room> getRoomsWithCurrentUsersByList(String SID, int start,
 			int max, String orderby, boolean asc) {
 		log.debug("getRooms");