Package org.opennms.netmgt.config.ackd
Class AckdConfiguration
- java.lang.Object
-
- org.opennms.netmgt.config.ackd.AckdConfiguration
-
- All Implemented Interfaces:
Serializable
public class AckdConfiguration extends Object implements Serializable
Behavior configuration for the Acknowledgment Daemon- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
DEFAULT_ACK_EXPRESSION
static boolean
DEFAULT_ALARM_SYNC_FLAG
static String
DEFAULT_ALARMID_MATCH_EXPRESSION
static String
DEFAULT_CLEAR_EXPRESSION
static String
DEFAULT_ESCALATE_EXPRESSION
static String
DEFAULT_NOTIFYID_MATCH_EXPRESSION
static String
DEFAULT_UNACK_EXPRESSION
-
Constructor Summary
Constructors Constructor Description AckdConfiguration()
AckdConfiguration(boolean alarmSync, String ackExpression, String unackExpression, String clearExpression, String escalateExpression, String notifyidMatchExpression, String alarmidMatchExpression, List<Reader> readers)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getAckExpression()
String
getAlarmidMatchExpression()
boolean
getAlarmSync()
String
getClearExpression()
String
getEscalateExpression()
String
getNotifyidMatchExpression()
List<Reader>
getReaders()
String
getUnackExpression()
int
hashCode()
void
setAckExpression(String ackExpression)
void
setAlarmidMatchExpression(String alarmidMatchExpression)
void
setAlarmSync(Boolean alarmSync)
void
setClearExpression(String clearExpression)
void
setEscalateExpression(String escalateExpression)
void
setNotifyidMatchExpression(String notifyidMatchExpression)
void
setReaders(List<Reader> readers)
void
setUnackExpression(String unackExpression)
-
-
-
Field Detail
-
DEFAULT_ALARM_SYNC_FLAG
public static final boolean DEFAULT_ALARM_SYNC_FLAG
- See Also:
- Constant Field Values
-
DEFAULT_ACK_EXPRESSION
public static final String DEFAULT_ACK_EXPRESSION
- See Also:
- Constant Field Values
-
DEFAULT_UNACK_EXPRESSION
public static final String DEFAULT_UNACK_EXPRESSION
- See Also:
- Constant Field Values
-
DEFAULT_ESCALATE_EXPRESSION
public static final String DEFAULT_ESCALATE_EXPRESSION
- See Also:
- Constant Field Values
-
DEFAULT_CLEAR_EXPRESSION
public static final String DEFAULT_CLEAR_EXPRESSION
- See Also:
- Constant Field Values
-
DEFAULT_NOTIFYID_MATCH_EXPRESSION
public static final String DEFAULT_NOTIFYID_MATCH_EXPRESSION
- See Also:
- Constant Field Values
-
DEFAULT_ALARMID_MATCH_EXPRESSION
public static final String DEFAULT_ALARMID_MATCH_EXPRESSION
- See Also:
- Constant Field Values
-
-
Method Detail
-
getAlarmSync
public boolean getAlarmSync()
-
setAlarmSync
public void setAlarmSync(Boolean alarmSync)
-
getAckExpression
public String getAckExpression()
-
setAckExpression
public void setAckExpression(String ackExpression)
-
getUnackExpression
public String getUnackExpression()
-
setUnackExpression
public void setUnackExpression(String unackExpression)
-
getEscalateExpression
public String getEscalateExpression()
-
setEscalateExpression
public void setEscalateExpression(String escalateExpression)
-
getClearExpression
public String getClearExpression()
-
setClearExpression
public void setClearExpression(String clearExpression)
-
getNotifyidMatchExpression
public String getNotifyidMatchExpression()
-
setNotifyidMatchExpression
public void setNotifyidMatchExpression(String notifyidMatchExpression)
-
getAlarmidMatchExpression
public String getAlarmidMatchExpression()
-
setAlarmidMatchExpression
public void setAlarmidMatchExpression(String alarmidMatchExpression)
-
-