Package de.hybris.platform.ticket.dao
Interface AgentDao
- All Known Implementing Classes:
DefaultAgentDao
public interface AgentDao
Dao for finding agets and agent groups.
- Spring Bean ID:
- agentDao
-
Method Summary
Modifier and TypeMethodDescriptionFind all agent groups.findAgentGroupsByBaseStore(BaseStoreModel baseStore) Find agent groups by base store.Find all agents.findAgentsByBaseStore(BaseStoreModel baseStore) Find agents by base store.
-
Method Details
-
findAgentGroups
List<CsAgentGroupModel> findAgentGroups()Find all agent groups.- Returns:
- the list of found
CsAgentGroupModelobjects.
-
findAgentGroupsByBaseStore
Find agent groups by base store.- Parameters:
baseStore- the base store for which search will be executed- Returns:
- the list of found
CsAgentGroupModelobjects.
-
findAgents
List<EmployeeModel> findAgents()Find all agents.- Returns:
- the list of found
EmployeeModelobjects.
-
findAgentsByBaseStore
Find agents by base store.- Parameters:
baseStore- the base store for which search will be executed- Returns:
- the list of found
EmployeeModelobjects.
-