Class OriginEntity
- java.lang.Object
-
- org.exoplatform.webconferencing.domain.OriginEntity
-
@Entity(name="WebConfOrigin") public class OriginEntity extends Object
Call origins (from where participants are from). Created by The eXo Platform SAS.- Version:
- $Id: OriginEntity.java 00000 Dec 18, 2020 pnedonosko $
- Author:
- Peter Nedonosko
-
-
Constructor Summary
Constructors Constructor Description OriginEntity()Instantiates a new origin entity.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCallId()Gets the call id.StringgetId()Gets the id.StringgetState()Gets the state.StringgetType()Gets the type.voidsetCallId(String callId)Sets the call id.voidsetId(String id)Sets the id.voidsetState(String state)Sets the state.voidsetType(String type)Sets the type.
-
-
-
Method Detail
-
getId
public String getId()
Gets the id.- Returns:
- the id
-
setId
public void setId(String id)
Sets the id.- Parameters:
id- the new id
-
getCallId
public String getCallId()
Gets the call id.- Returns:
- the call id
-
setCallId
public void setCallId(String callId)
Sets the call id.- Parameters:
callId- the new call id
-
getType
public String getType()
Gets the type.- Returns:
- the type
-
setType
public void setType(String type)
Sets the type.- Parameters:
type- the new type
-
getState
public String getState()
Gets the state.- Returns:
- the state
-
setState
public void setState(String state)
Sets the state.- Parameters:
state- the state to set
-
-