Class RecordingChunk
- java.lang.Object
-
- org.apache.openmeetings.db.entity.HistoricalEntity
-
- org.apache.openmeetings.db.entity.record.RecordingChunk
-
- All Implemented Interfaces:
Serializable,IDataProviderEntity
@Entity public class RecordingChunk extends HistoricalEntity
contains data about each stream, for example if it is a screen sharing or audio/video stream. There is also aRecordingChunk.StatusvaluestreamStatus, as long as this variable is not set toRecordingChunk.Status.STOPPED, the recording process will not proceed and start to convert all input sources to a single recording file.- Author:
- sebawagner
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classRecordingChunk.Statusstatic classRecordingChunk.Type
-
Constructor Summary
Constructors Constructor Description RecordingChunk()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DategetEnd()LonggetId()RecordinggetRecording()StringgetSid()DategetStart()StringgetStreamName()RecordingChunk.StatusgetStreamStatus()RecordingChunk.TypegetType()booleanisAudioOnly()voidsetEnd(Date end)voidsetId(Long id)voidsetRecording(Recording recording)voidsetSid(String sid)voidsetStart(Date start)voidsetStreamName(String streamName)voidsetStreamStatus(RecordingChunk.Status status)voidsetType(RecordingChunk.Type type)-
Methods inherited from class org.apache.openmeetings.db.entity.HistoricalEntity
getInserted, getUpdated, isDeleted, setDeleted, setInserted, setUpdated
-
-
-
-
Method Detail
-
getId
public Long getId()
-
setId
public void setId(Long id)
-
getRecording
public Recording getRecording()
-
setRecording
public void setRecording(Recording recording)
-
getStart
public Date getStart()
-
setStart
public void setStart(Date start)
-
getEnd
public Date getEnd()
-
setEnd
public void setEnd(Date end)
-
getType
public RecordingChunk.Type getType()
-
setType
public void setType(RecordingChunk.Type type)
-
isAudioOnly
public boolean isAudioOnly()
-
getStreamName
public String getStreamName()
-
setStreamName
public void setStreamName(String streamName)
-
getSid
public String getSid()
-
setSid
public void setSid(String sid)
-
getStreamStatus
public RecordingChunk.Status getStreamStatus()
-
setStreamStatus
public void setStreamStatus(RecordingChunk.Status status)
-
-