Interface AgentQuickCase
-
- All Superinterfaces:
IntermediateStorageProvider
,OptionalCategoryProvider
- All Known Subinterfaces:
AgentCallQuickCase
public interface AgentQuickCase extends OptionalCategoryProvider, IntermediateStorageProvider
This interface provides information of a quick case of an agent.- Since:
- 11.18
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default java.util.Optional<Category>
getCategory()
Returns the optionalCategory
.java.lang.Long
getId()
default IntermediateStorage
getIntermediateStorage()
Returns the IntermediateStorage for the instance of thisAccountModifier
-
-
-
Method Detail
-
getId
java.lang.Long getId()
- Returns:
- the id of the agent quick case
- Since:
- 11.18
-
getCategory
default java.util.Optional<Category> getCategory()
Description copied from interface:OptionalCategoryProvider
Returns the optionalCategory
.- Specified by:
getCategory
in interfaceOptionalCategoryProvider
- Returns:
- the category if present, otherwise an empty optional
-
getIntermediateStorage
default IntermediateStorage getIntermediateStorage()
Description copied from interface:IntermediateStorageProvider
Returns the IntermediateStorage for the instance of thisAccountModifier
- Specified by:
getIntermediateStorage
in interfaceIntermediateStorageProvider
- Returns:
- the
IntermediateStorage
-
-