Class ParticipantEntity
- java.lang.Object
-
- org.exoplatform.webconferencing.domain.ParticipantEntity
-
@Entity(name="WebConfParticipant") public class ParticipantEntity extends Object
Created by The eXo Platform SAS.- Version:
- $Id: ParticipantEntity.java 00000 Dec 22, 2017 pnedonosko $
- Author:
- Peter Nedonosko
-
-
Constructor Summary
Constructors Constructor Description ParticipantEntity()Instantiates a new participant entity.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCallId()Gets the call id.StringgetClientId()Gets the client id.StringgetId()Gets the id.StringgetState()Gets the state.StringgetType()Gets the type.voidsetCallId(String callId)Sets the call id.voidsetClientId(String clientId)Sets the client 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
-
getClientId
public String getClientId()
Gets the client id.- Returns:
- the clientId
-
setClientId
public void setClientId(String clientId)
Sets the client id.- Parameters:
clientId- the clientId to set
-
-