|
|
@ -33,6 +33,7 @@ public class PolicyConfiguration {
|
|
|
|
private int minRetriesToMarkUnreachable;
|
|
|
|
private int minRetriesToMarkUnreachable;
|
|
|
|
private int minRetriesToMarkInactive;
|
|
|
|
private int minRetriesToMarkInactive;
|
|
|
|
private List<String> platforms;
|
|
|
|
private List<String> platforms;
|
|
|
|
|
|
|
|
private String policyEvaluationPointName;
|
|
|
|
|
|
|
|
|
|
|
|
@XmlElement(name = "MonitoringClass", required = true)
|
|
|
|
@XmlElement(name = "MonitoringClass", required = true)
|
|
|
|
public String getMonitoringClass() {
|
|
|
|
public String getMonitoringClass() {
|
|
|
@ -98,4 +99,13 @@ public class PolicyConfiguration {
|
|
|
|
this.platforms = platforms;
|
|
|
|
this.platforms = platforms;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@XmlElement(name = "PolicyEvaluationPointName", required = true)
|
|
|
|
|
|
|
|
public String getPolicyEvaluationPointName() {
|
|
|
|
|
|
|
|
return policyEvaluationPointName;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setPolicyEvaluationPointName(String policyEvaluationPointName) {
|
|
|
|
|
|
|
|
this.policyEvaluationPointName = policyEvaluationPointName;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|