Interface AgentTypeProvider
-
- All Known Implementing Classes:
CloudAgentTypeProviderImpl
,RealAgentTypeProvider
public interface AgentTypeProvider
Generates agent type information for a given agent- Author:
- Eugene Petrenko
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AgentTypeDetails
getAgentTypeDetails(int agentTypeId, AgentTypeKey key)
AgentTypeKey
makeKey(BuildAgentEx desc)
Creates agent type key for a given agent type
-
-
-
Method Detail
-
makeKey
@Nullable AgentTypeKey makeKey(@NotNull BuildAgentEx desc)
Creates agent type key for a given agent type- Parameters:
desc
- agent info- Returns:
- key or null
-
getAgentTypeDetails
@Nullable AgentTypeDetails getAgentTypeDetails(int agentTypeId, @NotNull AgentTypeKey key)
- Parameters:
agentTypeId
- agent type idkey
- agent type key- Returns:
- runtime agent type details
-
-