Class EventTemplate
- java.lang.Object
-
- org.opennms.netmgt.eventd.processor.expandable.EventTemplate
-
- All Implemented Interfaces:
ExpandableToken
public class EventTemplate extends Object implements ExpandableToken
TheEventTemplate
represents the event input, containing place-holders, e.g. 'nodeLabel', and support to expand the template. For each placeholder in theinput
aExpandableToken
is created. The expandable state of theEventTemplate
is the expanded state of all tokens (tokens
.
-
-
Constructor Summary
Constructors Constructor Description EventTemplate(String input, EventUtil eventUtil)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
expand(Event event, Map<String,Map<String,String>> decode)
Expands a token.boolean
requiresTransaction()
Defines if thisExpandableToken
requires a transaction to be expanded.
-
-
-
Method Detail
-
expand
public String expand(Event event, Map<String,Map<String,String>> decode)
Description copied from interface:ExpandableToken
Expands a token.- Specified by:
expand
in interfaceExpandableToken
- Parameters:
event
- An event, to expand the token from. May not be null.decode
- A Map, to help expanding the token. May be null.- Returns:
- The expanded token.
-
requiresTransaction
public boolean requiresTransaction()
Description copied from interface:ExpandableToken
Defines if thisExpandableToken
requires a transaction to be expanded.- Specified by:
requiresTransaction
in interfaceExpandableToken
- Returns:
- True if a transaction is required, False otherwise.
-
-