Interface PhoneSystemConnectorTabProvider
public interface PhoneSystemConnectorTabProvider
A
PhoneSystemConnectorTabProvider
is used to provide a custom PhoneSystemConnectorTab
.- Since:
- 11.27
-
Method Summary
Modifier and TypeMethodDescriptiongetPhoneSystemConnectorTab
(PhoneSystemConnectorTabViewContext phoneSystemConnectorTabViewContext) Provides a customizedPhoneSystemConnectorTab
IMPORTANT NOTE:
Please verify the type of thePhoneSystem
to prevent displaying multiple custom tabs on the configuration page.
-
Method Details
-
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
-