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 customizedPhoneSystemConnectorTabIMPORTANT NOTE:
Please verify the type of thePhoneSystemto prevent displaying multiple custom tabs on the configuration page.
-
Method Details
-
getPhoneSystemConnectorTab
PhoneSystemConnectorTab getPhoneSystemConnectorTab(PhoneSystemConnectorTabViewContext phoneSystemConnectorTabViewContext) Provides a customizedPhoneSystemConnectorTabIMPORTANT NOTE:
Please verify the type of thePhoneSystemto 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 thePhoneSystemConnectorPluginannotation of yourPhoneSystemConnectorimplementation.
UsePhoneSystemConnectorTabViewContext.getType()to get the type of the underlyingPhoneSystem- Parameters:
phoneSystemConnectorTabViewContext- provides view context specific information forPhoneSystemConnectorTab- Returns:
- the customized
PhoneSystemConnectorTabor null if noPhoneSystemConnectorTabshould be shown. - Since:
- 11.27
-