Class CallEntity
- java.lang.Object
-
- org.exoplatform.webconferencing.domain.CallEntity
-
@Entity(name="WebConfCall") public class CallEntity extends Object
Created by The eXo Platform SAS.- Version:
- $Id: CallEntity.java 00000 Dec 22, 2017 pnedonosko $
- Author:
- Peter Nedonosko
-
-
Field Summary
Fields Modifier and Type Field Description protected DateendDateThe call end date as planned (for information and use by providers).protected StringidThe id.protected booleanisGroupThe is group.protected booleanisUserThe is user.protected DatelastDateThe call last (actual) date of call start.protected StringownerIdThe owner id.protected StringownerTypeThe owner type.protected StringproviderTypeThe provider type.protected StringsettingsThe settings.protected DatestartDateThe call start date as planned (for information and use by providers).protected StringstateThe state.protected StringtitleThe title.
-
Constructor Summary
Constructors Constructor Description CallEntity()Instantiates a new call entity.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DategetEndDate()Gets the end date.StringgetId()Gets the id.DategetLastDate()Gets the call last use date.StringgetOwnerId()Gets the owner id.StringgetOwnerType()Gets the owner type.StringgetProviderType()Gets the provider type.StringgetSettings()Gets the settings.DategetStartDate()Gets the start date.StringgetState()Gets the state.StringgetTitle()Gets the title.booleanisGroup()Checks if is group.booleanisUser()Checks if is user.voidsetEndDate(Date endDate)Sets the end date.voidsetId(String id)Sets the id.voidsetIsGroup(boolean isGroup)Sets the checks if is group.voidsetIsUser(boolean isUser)Sets the checks if is user.voidsetLastDate(Date lastDate)Sets the call last use date.voidsetOwnerId(String ownerId)Sets the owner id.voidsetOwnerType(String ownerType)Sets the owner type.voidsetProviderType(String providerType)Sets the provider type.voidsetSettings(String settings)Sets the settings.voidsetStartDate(Date startDate)Sets the start date.voidsetState(String state)Sets the state.voidsetTitle(String title)Sets the title.
-
-
-
Field Detail
-
id
protected String id
The id.
-
providerType
protected String providerType
The provider type.
-
ownerType
protected String ownerType
The owner type.
-
ownerId
protected String ownerId
The owner id.
-
state
protected String state
The state.
-
title
protected String title
The title.
-
settings
protected String settings
The settings.
-
lastDate
protected Date lastDate
The call last (actual) date of call start.
-
startDate
protected Date startDate
The call start date as planned (for information and use by providers).
-
endDate
protected Date endDate
The call end date as planned (for information and use by providers).
-
isGroup
protected boolean isGroup
The is group.
-
isUser
protected boolean isUser
The is user.
-
-
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
-
getProviderType
public String getProviderType()
Gets the provider type.- Returns:
- the provider type
-
setProviderType
public void setProviderType(String providerType)
Sets the provider type.- Parameters:
providerType- the new provider type
-
getTitle
public String getTitle()
Gets the title.- Returns:
- the title
-
setTitle
public void setTitle(String title)
Sets the title.- Parameters:
title- the new title
-
getState
public String getState()
Gets the state.- Returns:
- the state
-
setState
public void setState(String state)
Sets the state.- Parameters:
state- the new state
-
getSettings
public String getSettings()
Gets the settings.- Returns:
- the settings
-
setSettings
public void setSettings(String settings)
Sets the settings.- Parameters:
settings- the new settings
-
getLastDate
public Date getLastDate()
Gets the call last use date.- Returns:
- the call last date
-
setLastDate
public void setLastDate(Date lastDate)
Sets the call last use date.- Parameters:
lastDate- the call last date
-
getStartDate
public Date getStartDate()
Gets the start date.- Returns:
- the startDate
-
setStartDate
public void setStartDate(Date startDate)
Sets the start date.- Parameters:
startDate- the startDate to set
-
getEndDate
public Date getEndDate()
Gets the end date.- Returns:
- the endDate
-
setEndDate
public void setEndDate(Date endDate)
Sets the end date.- Parameters:
endDate- the endDate to set
-
getOwnerType
public String getOwnerType()
Gets the owner type.- Returns:
- the owner type
-
setOwnerType
public void setOwnerType(String ownerType)
Sets the owner type.- Parameters:
ownerType- the new owner type
-
getOwnerId
public String getOwnerId()
Gets the owner id.- Returns:
- the owner id
-
setOwnerId
public void setOwnerId(String ownerId)
Sets the owner id.- Parameters:
ownerId- the new owner id
-
isGroup
public boolean isGroup()
Checks if is group.- Returns:
- true, if is group
-
setIsGroup
public void setIsGroup(boolean isGroup)
Sets the checks if is group.- Parameters:
isGroup- the new checks if is group
-
isUser
public boolean isUser()
Checks if is user.- Returns:
- the integer
-
setIsUser
public void setIsUser(boolean isUser)
Sets the checks if is user.- Parameters:
isUser- the new checks if is user
-
-