Interface AgentTypeProvider
-
- All Known Implementing Classes:
CloudAgentTypeProviderImpl,RealAgentTypeProvider
public interface AgentTypeProviderGenerates agent type information for a given agent- Author:
- Eugene Petrenko
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AgentTypeDetailsgetAgentTypeDetails(int agentTypeId, AgentTypeKey key)AgentTypeKeymakeKey(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
-
-