Class SnmpTrapMappingGroup
- java.lang.Object
-
- org.opennms.netmgt.alarmd.northbounder.snmptrap.SnmpTrapMappingGroup
-
public class SnmpTrapMappingGroup extends java.lang.ObjectThe Class SnmpTrapMappingGroup.- Author:
- Alejandro Galue
-
-
Field Summary
Fields Modifier and Type Field Description static org.slf4j.LoggerLOGThe Constant LOG.
-
Constructor Summary
Constructors Constructor Description SnmpTrapMappingGroup()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanaccepts(NorthboundAlarm alarm)Verifies if the mapping group object accepts a given northbound alarm.java.util.List<SnmpTrapMapping>getMappings()Gets the mappings.java.lang.StringgetName()Gets the name.java.lang.StringgetRule()Gets the rule.voidsetMappings(java.util.List<SnmpTrapMapping> mappings)Sets the mappings.voidsetName(java.lang.String name)Sets the name.voidsetRule(java.lang.String rule)Sets the rule.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Gets the name.- Returns:
- the name
-
getRule
public java.lang.String getRule()
Gets the rule.- Returns:
- the rule
-
getMappings
public java.util.List<SnmpTrapMapping> getMappings()
Gets the mappings.- Returns:
- the mappings
-
setName
public void setName(java.lang.String name)
Sets the name.- Parameters:
name- the new name
-
setRule
public void setRule(java.lang.String rule)
Sets the rule.- Parameters:
rule- the new rule
-
setMappings
public void setMappings(java.util.List<SnmpTrapMapping> mappings)
Sets the mappings.- Parameters:
mappings- the new mappings
-
accepts
public boolean accepts(NorthboundAlarm alarm)
Verifies if the mapping group object accepts a given northbound alarm.- Parameters:
alarm- the northbound alarm- Returns:
- true, if the alarm is accepted.
-
-