Class InviteEntity
- java.lang.Object
-
- org.exoplatform.webconferencing.domain.InviteEntity
-
@Entity(name="WebConfInvite") public class InviteEntity extends Object
The Class InviteEntity.
-
-
Field Summary
Fields Modifier and Type Field Description protected StringcallIdThe call id.static StringEXTERNAL_USER_TYPEThe Constant EXTERNAL_USER_TYPE.static StringGROUP_TYPEThe Constant GROUP_TYPE.protected StringidentityThe identity.protected StringidentityTypeThe identity type.protected StringinvitatationIdThe invitation id.static StringUSER_TYPEThe Constant USER_TYPE.
-
Constructor Summary
Constructors Constructor Description InviteEntity()Instantiates a new invite entity.InviteEntity(String callId, String identity, String identityType, String invitationId)Instantiates a new invite entity.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCallId()Gets the call id.StringgetIdentity()Gets the identity.StringgetIdentityType()Gets the identity type.StringgetInvitationId()Gets the invitation id.voidsetCallId(String callId)Sets the call id.voidsetIdentity(String identity)Sets the identity.voidsetIdentityType(String identityType)Sets the identity type.voidsetInvitationId(String invitationId)Sets the invitation id.
-
-
-
Field Detail
-
USER_TYPE
public static final String USER_TYPE
The Constant USER_TYPE.- See Also:
- Constant Field Values
-
GROUP_TYPE
public static final String GROUP_TYPE
The Constant GROUP_TYPE.- See Also:
- Constant Field Values
-
EXTERNAL_USER_TYPE
public static final String EXTERNAL_USER_TYPE
The Constant EXTERNAL_USER_TYPE.- See Also:
- Constant Field Values
-
callId
protected String callId
The call id.
-
identity
protected String identity
The identity.
-
identityType
protected String identityType
The identity type.
-
invitatationId
protected String invitatationId
The invitation id.
-
-
Method Detail
-
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
-
getIdentity
public String getIdentity()
Gets the identity.- Returns:
- the identity
-
setIdentity
public void setIdentity(String identity)
Sets the identity.- Parameters:
identity- the new identity
-
getIdentityType
public String getIdentityType()
Gets the identity type.- Returns:
- the identity type
-
setIdentityType
public void setIdentityType(String identityType)
Sets the identity type.- Parameters:
identityType- the new identity type
-
getInvitationId
public String getInvitationId()
Gets the invitation id.- Returns:
- the invitation id
-
setInvitationId
public void setInvitationId(String invitationId)
Sets the invitation id.- Parameters:
invitationId- the new invitation id
-
-