Package com.day.cq.replication
Interface AgentConfigGroup
-
public interface AgentConfigGroupAgentConfigGroup...
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,AgentConfig>getConfigurations()Returns the agent configurations that belong to this group.StringgetId()Returns the id of this config groupStringgetName()Returns the name of this config groupString[]getRunModes()Returns the run modes this group is active inStringgetTitle()Returns the title of this config groupbooleanisActive()Checks if this config group is active in respect to run modes.
-
-
-
Method Detail
-
getId
String getId()
Returns the id of this config group- Returns:
- the id
-
getName
String getName()
Returns the name of this config group- Returns:
- the name
-
getTitle
String getTitle()
Returns the title of this config group- Returns:
- the title
-
getRunModes
String[] getRunModes()
Returns the run modes this group is active in- Returns:
- array of run mode names
-
isActive
boolean isActive()
Checks if this config group is active in respect to run modes. The group is active if at least one run mode is currently active. Note that the run modes are evaluated when the agent config is created.- Returns:
trueif active
-
getConfigurations
Map<String,AgentConfig> getConfigurations()
Returns the agent configurations that belong to this group.- Returns:
- map of configurations, key is the configuration path.
-
-