Package org.exoplatform.webconferencing
Class CallProviderConfiguration
- java.lang.Object
-
- org.exoplatform.webconferencing.CallProviderConfiguration
-
public class CallProviderConfiguration extends Object
Provider configuration object for saving (in Admin UI) and Created by The eXo Platform SAS.- Version:
- $Id: CallProviderConfiguration.java 00000 Nov 24, 2017 pnedonosko $
- Author:
- Peter Nedonosko
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanactiveThe active.protected StringdescriptionThe description.protected booleanlogEnabledThe log enabled.protected StringtitleThe title.protected StringtypeThe type.
-
Constructor Summary
Constructors Constructor Description CallProviderConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()Gets the description.StringgetTitle()Gets the title.StringgetType()Gets the type.booleanisActive()Checks if is active.booleanisLogEnabled()Checks if is log enabled.voidsetActive(boolean active)Sets the active.voidsetDescription(String description)Sets the description.voidsetLogEnabled(boolean logEnabled)Sets the log enabled.voidsetTitle(String title)Sets the title.voidsetType(String providerType)Sets the type.
-
-
-
Method Detail
-
isLogEnabled
public boolean isLogEnabled()
Checks if is log enabled.- Returns:
- the logEnabled
-
setLogEnabled
public void setLogEnabled(boolean logEnabled)
Sets the log enabled.- Parameters:
logEnabled- the logEnabled to set
-
isActive
public boolean isActive()
Checks if is active.- Returns:
- true, if is active
-
setActive
public void setActive(boolean active)
Sets the active.- Parameters:
active- the new active
-
getType
public String getType()
Gets the type.- Returns:
- the type
-
setType
public void setType(String providerType)
Sets the type.- Parameters:
providerType- the new 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
-
getDescription
public String getDescription()
Gets the description.- Returns:
- the description
-
setDescription
public void setDescription(String description)
Sets the description.- Parameters:
description- the new description
-
-