Interface VisibilityHandler
-
public interface VisibilityHandler
This handler provides the visibility information This handler is only available in the supervisor application- Since:
- 10.0.146
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<Category>
getCategories(AgentCategoryVisibilityContext context)
This method returns the visible categories for the given agent contextjava.util.Set<Category>
getCategories(OnlineAgentCategoryVisibilityContext context)
This method returns the visible categories for the given agent contextjava.util.Set<Category>
getCategories(SupervisorCategoryVisibilityContext context)
This method returns the visible categories for the given supervisor contextjava.util.Set<Tenant>
getTenants(AgentTenantVisibilityContext context)
This method returns the visible tenants for the given agent contextjava.util.Set<Tenant>
getTenants(OnlineAgentTenantVisibilityContext context)
This method returns the visible tenants for the given online agent contextjava.util.Set<Tenant>
getTenants(SupervisorTenantVisibilityContext context)
This method returns the visible tenants for the given supervisor context
-
-
-
Method Detail
-
getTenants
java.util.Set<Tenant> getTenants(SupervisorTenantVisibilityContext context)
This method returns the visible tenants for the given supervisor context- Parameters:
context
- The visibility context. SeeSupervisorTenantVisibilityContext
for more information.- Returns:
- A set of visible tenants for the given context
- Since:
- 10.0.146
-
getTenants
java.util.Set<Tenant> getTenants(AgentTenantVisibilityContext context)
This method returns the visible tenants for the given agent context- Parameters:
context
- The visibility context. SeeAgentTenantVisibilityContext
for more information.- Returns:
- A set of visible tenants for the given context
- Since:
- 10.0.146
-
getTenants
java.util.Set<Tenant> getTenants(OnlineAgentTenantVisibilityContext context)
This method returns the visible tenants for the given online agent context- Parameters:
context
- The visibility context. SeeOnlineAgentTenantVisibilityContext
for more information.- Returns:
- A set of visible tenants for the given context
- Since:
- 10.0.146
-
getCategories
java.util.Set<Category> getCategories(SupervisorCategoryVisibilityContext context)
This method returns the visible categories for the given supervisor context- Parameters:
context
- The visibility context. SeeSupervisorCategoryVisibilityContext
for more information.- Returns:
- A set of visible categories for the given context
- Since:
- 11.0
-
getCategories
java.util.Set<Category> getCategories(AgentCategoryVisibilityContext context)
This method returns the visible categories for the given agent context- Parameters:
context
- The visibility context. SeeAgentCategoryVisibilityContext
for more information.- Returns:
- A set of visible categories for the given context
- Since:
- 11.0
-
getCategories
java.util.Set<Category> getCategories(OnlineAgentCategoryVisibilityContext context)
This method returns the visible categories for the given agent context- Parameters:
context
- The visibility context. SeeOnlineAgentCategoryVisibilityContext
for more information.- Returns:
- A set of visible categories for the given context
- Since:
- 11.0
-
-