Interface PhoneSystemConnectorTabProvider
-
public interface PhoneSystemConnectorTabProvider
APhoneSystemConnectorTabProvider
is used to provide a customPhoneSystemConnectorTab
.- Since:
- 11.27
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PhoneSystemConnectorTab
getPhoneSystemConnectorTab(PhoneSystemConnectorTabViewContext phoneSystemConnectorTabViewContext)
Provides a customizedPhoneSystemConnectorTab
IMPORTANT NOTE:
Please verify the type of thePhoneSystem
to prevent displaying multiple custom tabs on the configuration page.
-
-
-
Method Detail
-
getPhoneSystemConnectorTab
PhoneSystemConnectorTab getPhoneSystemConnectorTab(PhoneSystemConnectorTabViewContext phoneSystemConnectorTabViewContext)
Provides a customizedPhoneSystemConnectorTab
IMPORTANT NOTE:
Please verify the type of thePhoneSystem
to prevent displaying multiple custom tabs on the configuration page. This could happen if multiple phone system plugins of different types are installed.
Please ensure that your plugin only provides phone system configuration tabs of the desired type. The type has to be equal to the name of thePhoneSystemConnectorPlugin
annotation of yourPhoneSystemConnector
implementation.
UsePhoneSystemConnectorTabViewContext.getType()
to get the type of the underlyingPhoneSystem
- Parameters:
phoneSystemConnectorTabViewContext
- provides view context specific information forPhoneSystemConnectorTab
- Returns:
- the customized
PhoneSystemConnectorTab
or null if noPhoneSystemConnectorTab
should be shown. - Since:
- 11.27
-
-