Package org.openmeetings.app.persistence.beans.recording

Examples of org.openmeetings.app.persistence.beans.recording.ChatvaluesEvent


     
      XStream xStream = new XStream(new XppDriver());
      xStream.setMode(XStream.NO_REFERENCES);
      String action = xStream.toXML(vars);
     
      ChatvaluesEvent chatvaluesEvent = new ChatvaluesEvent();
      chatvaluesEvent.setStarttime(currentDate.getTime()-recordingsStartTime.getTime());
      chatvaluesEvent.setAction(action);
     
      roomRecording.getChatvalues().add(chatvaluesEvent);
     
      roomRecordingList.put(roomrecordingName, roomRecording);
     
View Full Code Here

TOP

Related Classes of org.openmeetings.app.persistence.beans.recording.ChatvaluesEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.