Interface AgentTypeDetails
-
public interface AgentTypeDetails- Since:
- 5.1
- Author:
- Eugene Petrenko
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDisplayName()StringgetLongName()StringgetName()StringgetProfileName()booleanisActive()Method to check if the agent type may contain agents in future.booleanisCloudAgent()
-
-
-
Method Detail
-
getName
@NotNull String getName()
-
getLongName
@NotNull String getLongName()
-
getDisplayName
@NotNull String getDisplayName()
-
getProfileName
@NotNull String getProfileName()
-
isCloudAgent
boolean isCloudAgent()
-
isActive
boolean isActive()
Method to check if the agent type may contain agents in future. For example, - cloud agent type with existing profile and image => true, - agent type of connected real agent => true,- Returns:
- true if agent type is not considered stale
-
-