Interface CallInfoTabProvider
-
public interface CallInfoTabProvider
ACallInfoTabProvider
is used to build a custom call info tab.- Since:
- 11.27
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CallInfoTab
getCallInfoTab(BacklogCallInfoViewContext context)
The method is called on plugins implementing this interface on all call info views displaying backlog calls.CallInfoTab
getCallInfoTab(CallInfoViewContext context)
The method is called on plugins implementing this interface to determine all information to display a custom call info tab view.default CallInfoTab
getCallInfoTab(SearchResultCallInfoViewContext context)
The method is called on plugins implementing this interface on all call info views displaying a call, that has been retrieved by a search request.
-
-
-
Method Detail
-
getCallInfoTab
CallInfoTab getCallInfoTab(CallInfoViewContext context)
The method is called on plugins implementing this interface to determine all information to display a custom call info tab view. The required information is returned through aCallInfoTab
object. If the return value isnull
no call info tab will be displayed for that request. This is the default method being called on plugins implementing this interface, if none of the other methods match to the current view context.- Parameters:
context
- TheCallInfoViewContext
associated with the request to the view component- Returns:
- The
CallInfoTab
instance containing the information to display the call info tab view. - Since:
- 11.27
-
getCallInfoTab
default CallInfoTab getCallInfoTab(BacklogCallInfoViewContext context)
The method is called on plugins implementing this interface on all call info views displaying backlog calls. If the return value isnull
no call info tab will be displayed for that request.- Parameters:
context
- TheBacklogCallInfoViewContext
associated with the request to the view component- Returns:
- The
CallInfoTab
instance containing the information to display the call info tab view. - Since:
- 11.27
-
getCallInfoTab
default CallInfoTab getCallInfoTab(SearchResultCallInfoViewContext context)
The method is called on plugins implementing this interface on all call info views displaying a call, that has been retrieved by a search request. If the return value isnull
no call info tab will be displayed for that request.- Parameters:
context
- TheSearchResultCallInfoViewContext
associated with the request to the view component- Returns:
- The
CallInfoTab
instance containing the information to display the call info tab view. - Since:
- 11.27
-
-