Package org.apache.openmeetings.persistence.beans.flvrecord

Examples of org.apache.openmeetings.persistence.beans.flvrecord.FlvRecordingLog


    }
  }
 
  public Long addFLVRecordingLog(String msgType, FlvRecording flvRecording, ConverterProcessResult returnMap) {
    try {
      FlvRecordingLog flvRecordingLog = new FlvRecordingLog();
      flvRecordingLog.setInserted(new Date());
      flvRecordingLog.setExitValue(returnMap.getExitValue());
      flvRecordingLog.setFlvRecording(flvRecording);
      flvRecordingLog.setFullMessage(returnMap.buildLogMessage());
      flvRecordingLog.setMsgType(msgType);
     
      flvRecordingLog = em.merge(flvRecordingLog);
      Long flvRecordingLogId = flvRecordingLog.getFlvRecordingLogId();
     
      return flvRecordingLogId;
    } catch (Exception ex2) {
      log.error("[addFLVRecordingLog]: ",ex2);
    }
View Full Code Here

TOP

Related Classes of org.apache.openmeetings.persistence.beans.flvrecord.FlvRecordingLog

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.