Package org.jenkinsci.plugins.pubsub
Class MessageEnricher
- java.lang.Object
-
- org.jenkinsci.plugins.pubsub.MessageEnricher
-
- All Implemented Interfaces:
ExtensionPoint
public abstract class MessageEnricher extends Object implements ExtensionPoint
Message enricher extension point.This extension point should only be used to add enough additional event data to allow an event consumer make a decision on whether or not it is interested in this event i.e. where the default min data on the event was not enough. Please use sparingly!!
- Author:
- tom.fennelly@gmail.com
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
-
Constructor Summary
Constructors Constructor Description MessageEnricher()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract void
enrich(Message message)
Enrich the message with some additional data.
-
-
-
Method Detail
-
enrich
public abstract void enrich(@NonNull Message message)
Enrich the message with some additional data.- Parameters:
message
- The message instance.
-
-